geforkt von mirrored/vaultwarden
Commit
8ce4c79612
1 geänderte Dateien mit 9 neuen und 10 gelöschten Zeilen
13
PROXY.md
13
PROXY.md
|
@ -31,18 +31,13 @@ localhost:443 {
|
||||||
## Nginx (by shauder)
|
## Nginx (by shauder)
|
||||||
```nginx
|
```nginx
|
||||||
server {
|
server {
|
||||||
include conf.d/ssl/ssl.conf;
|
|
||||||
|
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
server_name vault.*;
|
server_name vault.*;
|
||||||
|
|
||||||
location /notifications/hub/negotiate {
|
# Specify SSL config if using a shared one.
|
||||||
include conf.d/proxy-confs/proxy.conf;
|
#include conf.d/ssl/ssl.conf;
|
||||||
proxy_pass http://<SERVER>:80;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
include conf.d/proxy-confs/proxy.conf;
|
|
||||||
proxy_pass http://<SERVER>:80;
|
proxy_pass http://<SERVER>:80;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,6 +46,10 @@ server {
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
proxy_set_header Connection "upgrade";
|
proxy_set_header Connection "upgrade";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /notifications/hub/negotiate {
|
||||||
|
proxy_pass http://<SERVER>:80;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Laden …
In neuem Issue referenzieren