Update README.md (#2011)

Updated README.md to prevent Nginx redirecting the browser to the local address of the machine
This commit is contained in:
Ed 2024-01-26 09:30:16 +00:00 committed by GitHub
parent 860ce03f2a
commit b8dad2d657
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -510,7 +510,8 @@ server {
server_name app.mydomain.com;
location / {
proxy_pass http://localhost:7777;
proxy_pass http://localhost:7777;
proxy_set_header Host $host;
}
}
```