Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Remove the default gRPC configuration for the nginx-agent #149

Merged
merged 3 commits into from
Dec 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ sudo touch /etc/nginx-agent/agent-dynamic.conf
```

### Enabling the gRPC interface
Update the `/etc/nginx-agent/nginx-agent.conf` file to include the following settings:
Add the the following settings to `/etc/nginx-agent/nginx-agent.conf`:
mtbChef marked this conversation as resolved.
Show resolved Hide resolved

```yaml
server:
Expand All @@ -169,7 +169,7 @@ tls:
```

### Enabling the REST interface
The NGINX Agent REST interface can be exposed by adding the following lines to the `nginx-agent.conf` file.
The NGINX Agent REST interface can be exposed by validating the following lines in the `/etc/nginx-agent/nginx-agent.conf` file are present:

```yaml
api:
Expand Down
4 changes: 2 additions & 2 deletions docs/content/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ sudo touch /etc/nginx-agent/agent-dynamic.conf

### Enabling the gRPC interface

Update the `/etc/nginx-agent/nginx-agent.conf` file to include the following settings:
Add the the following settings to `/etc/nginx-agent/nginx-agent.conf`:
mtbChef marked this conversation as resolved.
Show resolved Hide resolved

```nginx
server:
Expand All @@ -63,7 +63,7 @@ tls:

### Enabling the REST interface

The NGINX Agent REST interface can be exposed by adding the following lines to the `nginx-agent.conf` file.
The NGINX Agent REST interface can be exposed by validating the following lines in the `/etc/nginx-agent/nginx-agent.conf` file are present:

```nginx
api:
Expand Down