Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release/13.3' into release/13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Mar 19, 2024
2 parents f66825d + be3667a commit 0a4dd7a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/installation-and-operations/configuration/server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,30 @@ server {
}
}
```

And the corresponding NginX configuration file would look like:

```nginx
# default.conf
upstream web {
server web:8080;
}
server {
listen 80;
server_name _;
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_pass http://web/;
}
}
```

```

0 comments on commit 0a4dd7a

Please sign in to comment.