mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-20 13:23:48 -07:00
clarify correct config for *warden
Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
parent
778c764abc
commit
ddcc002e2b
4 changed files with 21 additions and 83 deletions
|
@ -1,6 +1,10 @@
|
|||
## Version 2023/11/11
|
||||
## Version 2023/11/12
|
||||
# make sure that your bitwarden container is named bitwarden
|
||||
# make sure that your dns has a cname set for bitwarden
|
||||
# if you are using bitwarden (the official image), use the bitwarden conf
|
||||
# if you are using vaultwarden (an unofficial implementation), use the vaultwarden conf
|
||||
#
|
||||
# bitwarden defaults to port 8080 and can be changed using the environment variable BW_PORT_HTTP on the bitwarden container
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
|
@ -38,7 +42,7 @@ server {
|
|||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app bitwarden;
|
||||
set $upstream_port 80;
|
||||
set $upstream_port 8080;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
|
||||
|
@ -61,7 +65,7 @@ server {
|
|||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app bitwarden;
|
||||
set $upstream_port 80;
|
||||
set $upstream_port 8080;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
|
||||
|
@ -71,7 +75,7 @@ server {
|
|||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app bitwarden;
|
||||
set $upstream_port 80;
|
||||
set $upstream_port 8080;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
|
||||
|
@ -81,7 +85,7 @@ server {
|
|||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
set $upstream_app bitwarden;
|
||||
set $upstream_port 80;
|
||||
set $upstream_port 8080;
|
||||
set $upstream_proto http;
|
||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue