Adding NGINX troubleshooting step

After a day of working with somebody on Discord, we discovered that a trailing slash on `proxy_pass` results in errors
This commit is contained in:
DubhAd 2018-05-26 18:02:13 +01:00 committed by GitHub
parent 08592c1aa4
commit 1373232932
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,3 +175,9 @@ The request_sync service may fail with a 404 if the project_id of the Homegraph
3. Enable Homegraph API to the new project.
4. Generate a new API key.
5. Again, create a new project in the [developer console](https://console.actions.google.com/). Described above. But at the step 'Build under the Actions SDK box' choose your newly created project. By this, they share the same `project_id`.
### {% linkable_title Troubleshooting with NGINX %}
When using NGINX, ensure that your `proxy_pass` line *does not* have a trailing `/`, as this will result in errors. Your line should look like:
proxy_pass http://localhost:8123;