docs: Fix HTTPS port in nginx reverse proxy example

This commit is contained in:
Matthew Wild 2021-07-19 12:27:07 +01:00 committed by GitHub
parent 8324fe2059
commit 04e421a7e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ server {
server_name share.chat.example.com;
location / {
proxy_pass https://localhost:5080/;
proxy_pass https://localhost:5443/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# REMOVE THIS IF YOU CHANGE `localhost` TO ANYTHING ELSE ABOVE