updates rev-proxy to use vaultwarden instead of bitwarden.

This commit is contained in:
Colin Diem
2023-04-17 03:27:47 +00:00
parent 059727bfdd
commit 4909b26092

View File

@@ -30,7 +30,7 @@ include /etc/nginx/includes/ssl.conf;
location / { location / {
include /etc/nginx/includes/proxy.conf; include /etc/nginx/includes/proxy.conf;
proxy_pass http://bitwarden; proxy_pass http://vaultwarden;
} }
access_log /var/log/nginx/bitwarden-access.log combined; access_log /var/log/nginx/bitwarden-access.log combined;
@@ -189,7 +189,7 @@ location / {
return 404; return 404;
} }
access_log /var/log/nginx/access.log access; access_log off;
log_not_found off; log_not_found off;
error_log /var/log/nginx/error.log error; error_log /var/log/nginx/error.log error;
} }