31 lines
626 B
Plaintext
31 lines
626 B
Plaintext
server {
|
|
|
|
server_name vault.example.com;
|
|
listen [::]:80;
|
|
listen 80;
|
|
|
|
location / {
|
|
|
|
proxy_pass "http://127.0.0.1:50002/";
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
}
|
|
location /notifications/hub {
|
|
proxy_pass http://127.0.0.1:50003;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
location /notifications/hub/negotiate {
|
|
proxy_pass http://127.0.0.1:50002;
|
|
}
|
|
|
|
|
|
|
|
|
|
client_max_body_size 128M; # allow larger uploads
|
|
|
|
}
|