2021-03-02 20:49:10 +01:00
|
|
|
location / {
|
|
|
|
|
2021-01-09 12:41:36 +01:00
|
|
|
# Force usage of https
|
|
|
|
if ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
|
|
|
|
2021-01-09 21:34:33 +01:00
|
|
|
proxy_pass https://127.0.0.1:__PORT__;
|
|
|
|
proxy_redirect off;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Host $server_name;
|
|
|
|
|
2021-01-25 18:06:42 +01:00
|
|
|
# WebSocket support
|
2021-01-09 21:34:33 +01:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2021-01-09 12:41:36 +01:00
|
|
|
}
|