services/vaultwarden: Fix incorrect port

This commit is contained in:
kat witch 2021-09-21 00:54:19 +01:00
parent 0559379b42
commit 2c1c0b05d4
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -54,9 +54,18 @@
enableACME = true;
forceSSL = true;
locations = {
"/".proxyPass = "http://127.0.0.1:4000";
"/notifications/hub".proxyPass = "http://127.0.0.1:3012";
"/notifications/hub/negotiate".proxyPass = "http://127.0.0.1:80";
"/" = {
proxyPass = "http://localhost:4000";
proxyWebsockets = true;
};
"/notifications/hub" = {
proxyPass = "http://localhost:3012";
proxyWebsockets = true;
};
"/notifications/hub/negotiate" = {
proxyPass = "http://localhost:4000";
proxyWebsockets = true;
};
};
};