mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-07-06 05:58:47 +02:00
Revert "Align folders with updated upstream name"
This reverts commit 9fab19ae2d.
This commit is contained in:
23
bitwarden/rootfs/etc/nginx/servers/direct-ssl.disabled
Normal file
23
bitwarden/rootfs/etc/nginx/servers/direct-ssl.disabled
Normal file
@@ -0,0 +1,23 @@
|
||||
server {
|
||||
listen 7277 default_server ssl;
|
||||
|
||||
include /etc/nginx/includes/server_params.conf;
|
||||
include /etc/nginx/includes/ssl_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
|
||||
ssl_certificate /ssl/%%certfile%%;
|
||||
ssl_certificate_key /ssl/%%keyfile%%;
|
||||
|
||||
location / {
|
||||
proxy_pass http://backend;
|
||||
}
|
||||
|
||||
location /notifications/hub {
|
||||
proxy_pass http://wsbackend;
|
||||
}
|
||||
|
||||
location /notifications/hub/negotiate {
|
||||
proxy_pass http://backend;
|
||||
}
|
||||
|
||||
}
|
||||
19
bitwarden/rootfs/etc/nginx/servers/direct.disabled
Normal file
19
bitwarden/rootfs/etc/nginx/servers/direct.disabled
Normal file
@@ -0,0 +1,19 @@
|
||||
server {
|
||||
listen 7277 default_server;
|
||||
|
||||
include /etc/nginx/includes/server_params.conf;
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
|
||||
location / {
|
||||
proxy_pass http://backend;
|
||||
}
|
||||
|
||||
location /notifications/hub {
|
||||
proxy_pass http://wsbackend;
|
||||
}
|
||||
|
||||
location /notifications/hub/negotiate {
|
||||
proxy_pass http://backend;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user