Eric Nemchik 2022-09-08 20:08:24 +00:00
parent 99eedadc44
commit 6e4cb5d39c
238 changed files with 1554 additions and 1787 deletions

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template. # REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template.
# REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done. # REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done.
# REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings. # REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings.
@ -14,10 +14,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,11 +25,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template. # REMOVE THIS LINE BEFORE SUBMITTING: The structure of the file (all of the existing lines) should be kept as close as possible to this template.
# REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done. # REMOVE THIS LINE BEFORE SUBMITTING: Look through this file for <tags> and replace them. Review other sample files to see how things are done.
# REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings. # REMOVE THIS LINE BEFORE SUBMITTING: The comment lines at the top of the file (below this line) should explain any prerequisites for using the proxy such as DNS or app settings.
@ -13,11 +13,10 @@ location ^~ /<container_name>/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -39,6 +38,6 @@ location ^~ /<container_name>/ {
# set $upstream_port <port_number>; # set $upstream_port <port_number>;
# set $upstream_proto <http or https>; # set $upstream_proto <http or https>;
# proxy_pass $upstream_proto://$upstream_app:$upstream_port; # proxy_pass $upstream_proto://$upstream_app:$upstream_port;
# #
# # REMOVE THIS LINE BEFORE SUBMITTING: Additional proxy settings such as headers go below this line, leave the blank line above. # # REMOVE THIS LINE BEFORE SUBMITTING: Additional proxy settings such as headers go below this line, leave the blank line above.
# } # }

View file

@ -1,4 +1,4 @@
## Version 2021/09/24 ## Version 2022/09/08
# make sure that your dns has a cname set for adguard and that your adguard container is named adguard # make sure that your dns has a cname set for adguard and that your adguard container is named adguard
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -47,7 +46,7 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
location /dns-query { location /dns-query {
# to properly use this please set `allow_unencrypted_doh: true` and `force_https: false` in adguard # to properly use this please set `allow_unencrypted_doh: true` and `force_https: false` in adguard
# see https://github.com/AdguardTeam/AdGuardHome/wiki/Configuration#configuration-file # see https://github.com/AdguardTeam/AdGuardHome/wiki/Configuration#configuration-file

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# adminer does not require a base url setting, but the container needs to be named adminer # adminer does not require a base url setting, but the container needs to be named adminer
location /adminer { location /adminer {
@ -10,11 +10,10 @@ location ^~ /adminer/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/07/03 ## Version 2022/09/08
# make sure that your dns has a cname set for adminmongo and that your adminmongo container is not using a base url # make sure that your dns has a cname set for adminmongo and that your adminmongo container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for airsonic and that your airsonic container is not using a base url # make sure that your dns has a cname set for airsonic and that your airsonic container is not using a base url
# add `server.use-forward-headers=true` to `/config/application.properties` to ensure logs contain real source IP # add `server.use-forward-headers=true` to `/config/application.properties` to ensure logs contain real source IP
@ -12,10 +12,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -23,11 +23,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# set the CONTEXT_PATH variable to /airsonic in airsonic container. # set the CONTEXT_PATH variable to /airsonic in airsonic container.
location ^~ /airsonic { location ^~ /airsonic {
@ -6,11 +6,10 @@ location ^~ /airsonic {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for archisteamfarm # make sure that your dns has a cname set for archisteamfarm
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# Make sure that your dns has a cname set for aria2 and that your aria2-with-webui container is not using a base url # Make sure that your dns has a cname set for aria2 and that your aria2-with-webui container is not using a base url
# #
# The RPC port will need to be changed to 443 in the AriaNg/WebUI-Aria2 settings or by using the AriaNg command api # The RPC port will need to be changed to 443 in the AriaNg/WebUI-Aria2 settings or by using the AriaNg command api
@ -15,10 +15,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -26,11 +26,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -41,7 +40,7 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
location ~ (/aria2-with-webui)?/jsonrpc { location ~ (/aria2-with-webui)?/jsonrpc {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for audiobookshelf and that your audiobookshelf container is not using a base url # make sure that your dns has a cname set for audiobookshelf and that your audiobookshelf container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# set the CONTEXT_PATH variable to /audiobookshelf in audiobookshelf container. # set the CONTEXT_PATH variable to /audiobookshelf in audiobookshelf container.
location ^~ /audiobookshelf { location ^~ /audiobookshelf {
@ -6,11 +6,10 @@ location ^~ /audiobookshelf {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/05/10 ## Version 2022/09/08
# make sure that your dns has a cname set for babybuddy # make sure that your dns has a cname set for babybuddy
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for bazarr and that your bazarr container is not using a base url # make sure that your dns has a cname set for bazarr and that your bazarr container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# first go into bazarr settings, under "General" set the URL Base to /bazarr/ and restart the bazarr container # first go into bazarr settings, under "General" set the URL Base to /bazarr/ and restart the bazarr container
location /bazarr { location /bazarr {
@ -10,11 +10,10 @@ location ^~ /bazarr/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
#First edit beets.yml and enable the reverse proxy settings, under "web" add "reverse_proxy: true" and restart the beets container. #First edit beets.yml and enable the reverse proxy settings, under "web" add "reverse_proxy: true" and restart the beets container.
#Make sure that your dns has a cname set for beets and that your beets container is not using a base url #Make sure that your dns has a cname set for beets and that your beets container is not using a base url
@ -12,10 +12,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
#enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -23,11 +23,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
#first edit beets.yml and enable the reverse proxy settings, under "web" add "reverse_proxy: true" and restart the beets container #first edit beets.yml and enable the reverse proxy settings, under "web" add "reverse_proxy: true" and restart the beets container
location /beets { location /beets {
@ -6,11 +6,10 @@ location /beets {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/02/08 ## Version 2022/09/08
# make sure that your dns has a cname set for bitwarden and that your bitwarden container is not using a base url # make sure that your dns has a cname set for bitwarden and that your bitwarden container is not using a base url
# make sure your bitwarden container is named "bitwarden" # make sure your bitwarden container is named "bitwarden"
# set the environment variable WEBSOCKET_ENABLED=true on your bitwarden container # set the environment variable WEBSOCKET_ENABLED=true on your bitwarden container
@ -13,10 +13,10 @@ server {
client_max_body_size 128M; client_max_body_size 128M;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -24,11 +24,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -45,11 +44,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/02/08 ## Version 2022/09/08
## Environmental Variable DOMAIN=https://<DOMAIN>/bitwarden must be set in bitwarden container including subfolder. ## Environmental Variable DOMAIN=https://<DOMAIN>/bitwarden must be set in bitwarden container including subfolder.
## This is using ports 80 and 3012 ## This is using ports 80 and 3012
location /bitwarden { location /bitwarden {
@ -10,11 +10,10 @@ location ^~ /bitwarden/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -31,11 +30,10 @@ location ~ (/bitwarden)?/admin {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for boinc # make sure that your dns has a cname set for boinc
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/06/28 ## Version 2022/09/08
# In boinc docker arguments, set an env variable for SUBFOLDER=/boinc/ # In boinc docker arguments, set an env variable for SUBFOLDER=/boinc/
location /boinc { location /boinc {
@ -10,11 +10,10 @@ location ^~ /boinc/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for booksonic and that your booksonic container is not using a base url # make sure that your dns has a cname set for booksonic and that your booksonic container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# set the CONTEXT_PATH variable to /booksonic in booksonic container. # set the CONTEXT_PATH variable to /booksonic in booksonic container.
location ^~ /booksonic { location ^~ /booksonic {
@ -6,11 +6,10 @@ location ^~ /booksonic {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for bookstack and that your bookstack container is named bookstack # make sure that your dns has a cname set for bookstack and that your bookstack container is named bookstack
# Ensure you have the APP_URL Environment Variable set correctly in your Docker Run/Compose or in BookStack Env File (/www/.env) # Ensure you have the APP_URL Environment Variable set correctly in your Docker Run/Compose or in BookStack Env File (/www/.env)
# https://github.com/linuxserver/docker-bookstack#docker # https://github.com/linuxserver/docker-bookstack#docker
@ -13,10 +13,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -24,11 +24,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for calibre-web # make sure that your dns has a cname set for calibre-web
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,15 +22,14 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
# To use Authelia to log in to Calibre-Web, make sure "Reverse Proxy Login" is #include /config/nginx/authelia-location.conf;
# To use Authelia to log in to Calibre-Web, make sure "Reverse Proxy Login" is
# enabled, "Reverse Proxy Header Name" is set to Remote-User, and each Authelia # enabled, "Reverse Proxy Header Name" is set to Remote-User, and each Authelia
# user also has a corresponding user manually created in Calibre-Web. # user also has a corresponding user manually created in Calibre-Web.
#include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
@ -41,10 +40,10 @@ server {
proxy_set_header X-Scheme $scheme; proxy_set_header X-Scheme $scheme;
} }
# OPDS feed for eBook reader apps # OPDS feed for eBook reader apps
# Even if you use Authelia, the OPDS feed requires a password to be set for # Even if you use Authelia, the OPDS feed requires a password to be set for
# the user directly in Calibre-Web, as eBook reader apps don't support # the user directly in Calibre-Web, as eBook reader apps don't support
# form-based logins, only HTTP Basic auth. # form-based logins, only HTTP Basic auth.
location /opds/ { location /opds/ {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# calibre-web does not require a base url setting # calibre-web does not require a base url setting
location /calibre-web { location /calibre-web {
@ -10,15 +10,14 @@ location ^~ /calibre-web/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
# To use Authelia to log in to Calibre-Web, make sure "Reverse Proxy Login" is #include /config/nginx/authelia-location.conf;
# To use Authelia to log in to Calibre-Web, make sure "Reverse Proxy Login" is
# enabled, "Reverse Proxy Header Name" is set to Remote-User, and each Authelia # enabled, "Reverse Proxy Header Name" is set to Remote-User, and each Authelia
# user also has a corresponding user manually created in Calibre-Web. # user also has a corresponding user manually created in Calibre-Web.
#include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
@ -33,7 +32,7 @@ location ^~ /calibre-web/ {
# OPDS feed for eBook reader apps # OPDS feed for eBook reader apps
# Even if you use Authelia, the OPDS feed requires a password to be set for # Even if you use Authelia, the OPDS feed requires a password to be set for
# the user directly in Calibre-Web, as eBook reader apps don't support # the user directly in Calibre-Web, as eBook reader apps don't support
# form-based logins, only HTTP Basic auth. # form-based logins, only HTTP Basic auth.
location ^~ /calibre-web/opds/ { location ^~ /calibre-web/opds/ {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/03/29 ## Version 2022/09/08
# make sure that your dns has a cname set for calibre # make sure that your dns has a cname set for calibre
# for the content server, go into calibre preferences / sharing over the net / advanced and # for the content server, go into calibre preferences / sharing over the net / advanced and
# set the first option for prefix url to '/content-server', save and restart the container # set the first option for prefix url to '/content-server', save and restart the container
@ -14,10 +14,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,11 +25,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -51,11 +50,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/03/29 ## Version 2022/09/08
# In calibre docker arguments, set an env variable for SUBFOLDER=/calibre/ # In calibre docker arguments, set an env variable for SUBFOLDER=/calibre/
# for the content server, go into calibre preferences / sharing over the net / advanced and # for the content server, go into calibre preferences / sharing over the net / advanced and
# set the first option for prefix url to '/content-server', save and restart the container # set the first option for prefix url to '/content-server', save and restart the container
@ -13,11 +13,10 @@ location ^~ /calibre/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -38,11 +37,10 @@ location ^~ /content-server/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/06/25 ## Version 2022/09/08
# make sure that your dns has a cname set for changedetection and that your changedetection container is named changedetection # make sure that your dns has a cname set for changedetection and that your changedetection container is named changedetection
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -35,6 +34,6 @@ server {
set $upstream_port 5000; set $upstream_port 5000;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/06/28 ## Version 2022/09/08
# make sure that your dns has a cname set for chevereto and that your chevereto container is not using a base url # make sure that your dns has a cname set for chevereto and that your chevereto container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# Make sure that your dns has a cname set for chronograf and that your chronograf container is not using a base url # Make sure that your dns has a cname set for chronograf and that your chronograf container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# add BASE_PATH=/chronograf environment variable to your docker compose/run # add BASE_PATH=/chronograf environment variable to your docker compose/run
location /chronograf { location /chronograf {
@ -10,11 +10,10 @@ location ^~ /chronograf/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/02/20 ## Version 2022/09/08
# make sure that your dns has a cname set for cloudbeaver and that your cloudbeaver container is not using a base url # make sure that your dns has a cname set for cloudbeaver and that your cloudbeaver container is not using a base url
# tested using dbeaver/cloudbeaver # tested using dbeaver/cloudbeaver
@ -14,10 +14,10 @@ server {
proxy_redirect off; proxy_redirect off;
proxy_buffering off; proxy_buffering off;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,11 +25,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -40,4 +39,4 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for code-server # make sure that your dns has a cname set for code-server
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure you have added the following environmental variables to your run command/compose file # make sure you have added the following environmental variables to your run command/compose file
# CMD_DOMAIN=codimd.server.com # CMD_DOMAIN=codimd.server.com
# CMD_PROTOCOL_USESSL=true # CMD_PROTOCOL_USESSL=true
@ -13,10 +13,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -24,11 +24,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for collabora and that your collabora container is named collabora # make sure that your dns has a cname set for collabora and that your collabora container is named collabora
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/04/17 ## Version 2022/09/08
# make sure that your dns has a cname set for commento and that your commento config is not using a subdirectory. # make sure that your dns has a cname set for commento and that your commento config is not using a subdirectory.
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
#enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for couchpotato and that your couchpotato container is not using a base url # make sure that your dns has a cname set for couchpotato and that your couchpotato container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# first go into couchpotato settings, under "General" set the URL Base to /couchpotato and restart the couchpotato container # first go into couchpotato settings, under "General" set the URL Base to /couchpotato and restart the couchpotato container
location ^~ /couchpotato { location ^~ /couchpotato {
@ -6,11 +6,10 @@ location ^~ /couchpotato {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/03/30 ## Version 2022/09/08
# crontabui does not require a base url setting # crontabui does not require a base url setting
location /crontabui { location /crontabui {
@ -10,11 +10,10 @@ location ^~ /crontabui/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/05/24 ## Version 2022/09/08
# make sure that your dns has a cname set for crowdsec-dashboard and that your crowdsec-dashboard container is not using a base url # make sure that your dns has a cname set for crowdsec-dashboard and that your crowdsec-dashboard container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -35,7 +34,7 @@ server {
set $upstream_port 3000; set $upstream_port 3000;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
# Uncomment these if you want to lower security, and # Uncomment these if you want to lower security, and
# allow running in an iFrame (i.e. Organizr) # allow running in an iFrame (i.e. Organizr)
#proxy_hide_header Content-Security-Policy; #proxy_hide_header Content-Security-Policy;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for dashy and that your dashy container is not using a base url # make sure that your dns has a cname set for dashy and that your dashy container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for deluge and that your deluge container is not using a base url # make sure that your dns has a cname set for deluge and that your deluge container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# deluge does not require a base url setting # deluge does not require a base url setting
location /deluge { location /deluge {
@ -10,11 +10,10 @@ location ^~ /deluge/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for dillinger # make sure that your dns has a cname set for dillinger
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# Make sure that your dns has a cname set for onlyoffice named "documentserver" # Make sure that your dns has a cname set for onlyoffice named "documentserver"
# Make sure that the onlyoffice documentserver container is named "documentserver" # Make sure that the onlyoffice documentserver container is named "documentserver"
@ -12,10 +12,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
#enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -23,11 +23,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# First complete the setup by appending install.php to URL. # First complete the setup by appending install.php to URL.
# Make sure that your dns has a cname set for dokuwiki # Make sure that your dns has a cname set for dokuwiki
@ -12,10 +12,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
#enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -23,11 +23,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# first go into dokuwiki settings (Admin on the top left when Logged in), under "Configuration Settings" set the "basedir" to /dokuwiki/ and restart the dokuwiki container # first go into dokuwiki settings (Admin on the top left when Logged in), under "Configuration Settings" set the "basedir" to /dokuwiki/ and restart the dokuwiki container
location /dokuwiki { location /dokuwiki {
@ -10,11 +10,10 @@ location ^~ /dokuwiki/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# Make sure that your dns has a cname set for domoticz and that your domoticz container is not using a base url # Make sure that your dns has a cname set for domoticz and that your domoticz container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# set the WEBROOT variable to domoticz for the domoticz container. # set the WEBROOT variable to domoticz for the domoticz container.
location ^~ /domoticz/ { location ^~ /domoticz/ {
@ -6,11 +6,10 @@ location ^~ /domoticz/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for dozzle and that your dozzle container is named dozzle # make sure that your dns has a cname set for dozzle and that your dozzle container is named dozzle
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# First either add "--base /dozzle" or "-e DOZZLE_BASE=/dozzle" to your docker run command, and restart the Dozzle container # First either add "--base /dozzle" or "-e DOZZLE_BASE=/dozzle" to your docker run command, and restart the Dozzle container
location /dozzle { location /dozzle {
@ -10,11 +10,10 @@ location ^~ /dozzle/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
server { server {
listen 443 ssl; listen 443 ssl;
listen [::]:443 ssl; listen [::]:443 ssl;
@ -8,11 +8,11 @@ server {
include /config/nginx/ssl.conf; include /config/nginx/ssl.conf;
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf
#include /config/nginx/ldap.conf;
# enable for Authelia # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap-server.conf;
# enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -20,13 +20,12 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app drone; set $upstream_app drone;
@ -34,4 +33,4 @@ server {
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for duplicati and that your duplicati container is not using a base url # make sure that your dns has a cname set for duplicati and that your duplicati container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# duplicati does not require a base url setting. DUPLICATI AUTH WILL NOT WORK WITH THIS CONFIG, use the auth options below # duplicati does not require a base url setting. DUPLICATI AUTH WILL NOT WORK WITH THIS CONFIG, use the auth options below
location /duplicati { location /duplicati {
@ -10,11 +10,10 @@ location ^~ /duplicati/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for embystat # make sure that your dns has a cname set for embystat
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/11/03 ## Version 2022/09/08
# make sure that your dns has a cname set for emulatorjs # make sure that your dns has a cname set for emulatorjs
# In emulatorjs docker arguments, set an env variable for SUBFOLDER=/backend/ # In emulatorjs docker arguments, set an env variable for SUBFOLDER=/backend/
# The backend interface will be accessible at https://emulatorjs.yourdomain.com/backend/ # The backend interface will be accessible at https://emulatorjs.yourdomain.com/backend/
@ -13,11 +13,11 @@ server {
include /config/nginx/ssl.conf; include /config/nginx/ssl.conf;
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf
#include /config/nginx/ldap.conf;
# enable for Authelia # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap-server.conf;
# enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,13 +25,12 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app emulatorjs; set $upstream_app emulatorjs;
@ -49,13 +48,12 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app emulatorjs; set $upstream_app emulatorjs;

View file

@ -1,4 +1,4 @@
## Version 2021/06/30 ## Version 2022/09/08
# make sure that your dns has a cname set for filebot and that your filebot container is not using a base url # make sure that your dns has a cname set for filebot and that your filebot container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# filebot does not require a base url setting # filebot does not require a base url setting
location /filebot { location /filebot {
@ -10,11 +10,10 @@ location ^~ /filebot/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for filebrowser and that your filebrowser container is not using a base url # make sure that your dns has a cname set for filebrowser and that your filebrowser container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# set this environment variable on your filebrowser container FILEBROWSER_BASEURL=/filebrowser # set this environment variable on your filebrowser container FILEBROWSER_BASEURL=/filebrowser
location /filebrowser { location /filebrowser {
@ -10,11 +10,10 @@ location ^~ /filebrowser/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for firefly and that your firefly container is not using a base url # make sure that your dns has a cname set for firefly and that your firefly container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for firefox and that your firefox container is not using a base url # make sure that your dns has a cname set for firefox and that your firefox container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for flexget # make sure that your dns has a cname set for flexget
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -35,6 +34,6 @@ server {
set $upstream_port 5050; set $upstream_port 5050;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,6 +1,6 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure to set 'base_url: /flexget' under your flexget's config.yml web_server block # make sure to set 'base_url: /flexget' under your flexget's config.yml web_server block
# #
location /flexget { location /flexget {
return 301 $scheme://$host/flexget/; return 301 $scheme://$host/flexget/;
} }
@ -10,11 +10,10 @@ location /flexget {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -22,9 +21,9 @@ location /flexget {
set $upstream_app flexget; set $upstream_app flexget;
set $upstream_port 5050; set $upstream_port 5050;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
location ^~ /flexget/api/ { location ^~ /flexget/api/ {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for flood and that your flood container is not using a base url # make sure that your dns has a cname set for flood and that your flood container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# flood does not require a base url setting # flood does not require a base url setting
location /flood { location /flood {
@ -10,11 +10,10 @@ location ^~ /flood/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for foldingathome # make sure that your dns has a cname set for foldingathome
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,6 +1,6 @@
## Version 2021/06/05 ## Version 2022/09/08
# make sure that your dns has a cname set for foundryvtt # make sure that your dns has a cname set for foundryvtt
# Ensure that your Foundry VTT's {userData}/Config/options.json file is configured as follows: # Ensure that your Foundry VTT's {userData}/Config/options.json file is configured as follows:
# "hostname": "your.hostname.com", # "hostname": "your.hostname.com",
# "routePrefix": null, # "routePrefix": null,
# "sslCert": null, # "sslCert": null,
@ -20,10 +20,10 @@ server {
client_max_body_size 300M; client_max_body_size 300M;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -31,11 +31,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -44,6 +43,6 @@ server {
set $upstream_port 30000; set $upstream_port 30000;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/07/08 ## Version 2022/09/08
# make sure that your dns has a cname set for freshrss # make sure that your dns has a cname set for freshrss
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/07/08 ## Version 2022/09/08
# freshrss does not have a base url setting # freshrss does not have a base url setting
location /freshrss { location /freshrss {
@ -10,11 +10,10 @@ location ^~ /freshrss/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/10/20 ## Version 2022/09/08
# make sure that your dns has a cname set for gaps and that your gaps container is not using a base url # make sure that your dns has a cname set for gaps and that your gaps container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/04/08 ## Version 2022/09/08
# In your Docker compose (or docker run) add: BASE_URL: /gaps # In your Docker compose (or docker run) add: BASE_URL: /gaps
location /gaps { location /gaps {
@ -10,11 +10,10 @@ location ^~ /gaps/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2022/06/25 ## Version 2022/09/08
# make sure that your dns has a cname set for get_iplayer and that your get_iplayer container is named get_iplayer # make sure that your dns has a cname set for get_iplayer and that your get_iplayer container is named get_iplayer
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/07/08 ## Version 2022/09/08
# make sure that your dns has a cname set for ghost and that your ghost config is not using a subdirectory. # make sure that your dns has a cname set for ghost and that your ghost config is not using a subdirectory.
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
#enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,24 +1,23 @@
## Version 2021/07/08 ## Version 2022/09/08
# Make sure you are using a subfolder in your ghost config file. https://ghost.org/docs/concepts/config/#url # Make sure you are using a subfolder in your ghost config file. https://ghost.org/docs/concepts/config/#url
# Note: /ghost/ is by default used for the admin page. See https://ghost.org/docs/concepts/config/#admin-url # Note: /ghost/ is by default used for the admin page. See https://ghost.org/docs/concepts/config/#admin-url
location /blog { location /blog {
# enable the next two lines for http auth # enable the next two lines for http auth
#uth_basic "Restricted"; #uth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
#enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app ghost; set $upstream_app ghost;
set $upstream_port 2368; set $upstream_port 2368;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for gitea and the following parameters in /data/gitea/conf/app.ini are edited # make sure that your dns has a cname set for gitea and the following parameters in /data/gitea/conf/app.ini are edited
# [server] # [server]
# SSH_DOMAIN = gitea.server.com # SSH_DOMAIN = gitea.server.com
@ -15,10 +15,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -26,11 +26,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for glances and that your glances container is not using a base url # make sure that your dns has a cname set for glances and that your glances container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# glances does not require a base url setting # glances does not require a base url setting
location /glances { location /glances {
@ -10,11 +10,10 @@ location ^~ /glances/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for gotify # make sure that your dns has a cname set for gotify
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# gotify doesn't require a base url # gotify doesn't require a base url
location /gotify { location /gotify {
@ -10,11 +10,10 @@ location /gotify/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /login;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for grafana and that your grafana container is not using a base url # make sure that your dns has a cname set for grafana and that your grafana container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -35,9 +34,9 @@ server {
set $upstream_port 3000; set $upstream_port 3000;
set $upstream_proto http; set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
# Clear Authorization Header if you are using http auth and normal Grafana auth # Clear Authorization Header if you are using http auth and normal Grafana auth
#proxy_set_header Authorization ""; #proxy_set_header Authorization "";
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# grafana requires environment variables set thus: # grafana requires environment variables set thus:
# environment: # environment:
# - "GF_SERVER_ROOT_URL=https://my.domain.com/grafana" # - "GF_SERVER_ROOT_URL=https://my.domain.com/grafana"
@ -9,11 +9,10 @@ location ^~ /grafana/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -22,10 +21,10 @@ location ^~ /grafana/ {
set $upstream_port 3000; set $upstream_port 3000;
set $upstream_proto http; set $upstream_proto http;
proxy_pass http://$upstream_grafana:$upstream_port ; proxy_pass http://$upstream_grafana:$upstream_port ;
# Clear Authorization Header if you are using http auth and normal Grafana auth # Clear Authorization Header if you are using http auth and normal Grafana auth
#proxy_set_header Authorization ""; #proxy_set_header Authorization "";
rewrite ^/grafana/(.*)$ /$1 break; rewrite ^/grafana/(.*)$ /$1 break;
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for grocy # make sure that your dns has a cname set for grocy
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -37,7 +36,7 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
location /api { location /api {
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for guacamole and that your guacamole container is not using a base url # make sure that your dns has a cname set for guacamole and that your guacamole container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# guacamole does not require a base url setting # guacamole does not require a base url setting
location /guacamole { location /guacamole {
@ -10,11 +10,10 @@ location ^~ /guacamole/ {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,9 +1,8 @@
## Version 2021/06/02 ## Version 2022/09/08
# make sure that your dns has a cname set for hass configurator # make sure that your dns has a cname set for hass configurator
# this proxy configuration file is for the hass-configurator-docker container that is used # this proxy configuration file is for the hass-configurator-docker container that is used
# in the hassos addon store (https://github.com/CausticLab/hass-configurator-docker) # in the hassos addon store (https://github.com/CausticLab/hass-configurator-docker)
server { server {
listen 443 ssl; listen 443 ssl;
listen [::]:443 ssl; listen [::]:443 ssl;
@ -14,10 +13,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,15 +24,14 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf include /config/nginx/resolver.conf;
set $upstream_app hass-configurator; set $upstream_app hass-configurator;
set $upstream_port 3218; set $upstream_port 3218;
set $upstream_proto http; set $upstream_proto http;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for headphones # make sure that your dns has a cname set for headphones
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# first stop the headphones container and edit the config.ini for headphones and set http_root to /headphones and then start the headphones container # first stop the headphones container and edit the config.ini for headphones and set http_root to /headphones and then start the headphones container
location ^~ /headphones { location ^~ /headphones {
@ -6,11 +6,10 @@ location ^~ /headphones {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/11/14 ## Version 2022/09/08
# make sure that your dns has a cname set for <container_name> and that your <container_name> container is not using a base url # make sure that your dns has a cname set for <container_name> and that your <container_name> container is not using a base url
# make sure your Healthchecks ALLOWED_HOSTS and SITE_ROOT align with the server_name used in this conf. # make sure your Healthchecks ALLOWED_HOSTS and SITE_ROOT align with the server_name used in this conf.
@ -12,10 +12,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -23,11 +23,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/12/09 ## Version 2022/09/08
# make sure you set the following environment variables in your docker arguments # make sure you set the following environment variables in your docker arguments
# CMD_DOMAIN=hedgedoc.server.com # CMD_DOMAIN=hedgedoc.server.com
# CMD_URL_ADDPORT=false # CMD_URL_ADDPORT=false
@ -14,10 +14,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -25,11 +25,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for heimdall # make sure that your dns has a cname set for heimdall
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# In order to use this location block you need to edit the default file one folder up and comment out the / location # In order to use this location block you need to edit the default file one folder up and comment out the / location
location / { location / {
@ -6,11 +6,10 @@ location / {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/10/11 ## Version 2022/09/08
# make sure that your dns has a cname set for homeassistant and that your homeassistant container is not using a base url # make sure that your dns has a cname set for homeassistant and that your homeassistant container is not using a base url
# As of homeassistant 2021.7.0, it is now required to define the network range your proxy resides in, this is done in Homeassitants configuration.yaml # As of homeassistant 2021.7.0, it is now required to define the network range your proxy resides in, this is done in Homeassitants configuration.yaml
@ -20,10 +20,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -31,11 +31,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for homebridge and that your homebridge container is not using a base url # make sure that your dns has a cname set for homebridge and that your homebridge container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;
@ -37,5 +36,4 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_pass $upstream_proto://$upstream_app:$upstream_port;
} }
} }

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for homer and that your homer container is not using a base url # make sure that your dns has a cname set for homer and that your homer container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for huginn # make sure that your dns has a cname set for huginn
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/06/20 ## Version 2022/09/08
# make sure that your dns has a cname set for influxdb and that your influxdb container is not using a base url # make sure that your dns has a cname set for influxdb and that your influxdb container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# make sure that your dns has a cname set for jackett and that your jackett container is not using a base url # make sure that your dns has a cname set for jackett and that your jackett container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/05/18 ## Version 2022/09/08
# first go into jackett settings, set the URL Base to /jackett and restart the jackett container # first go into jackett settings, set the URL Base to /jackett and restart the jackett container
location ^~ /jackett { location ^~ /jackett {
@ -6,11 +6,10 @@ location ^~ /jackett {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia, also enable authelia-server.conf in the default site config # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

View file

@ -1,4 +1,4 @@
## Version 2021/06/30 ## Version 2022/09/08
# make sure that your dns has a cname set for jdownloader and that your jdownloader container is not using a base url # make sure that your dns has a cname set for jdownloader and that your jdownloader container is not using a base url
server { server {
@ -11,10 +11,10 @@ server {
client_max_body_size 0; client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf # enable for ldap auth (requires ldap-location.conf in the location block)
#include /config/nginx/ldap.conf; #include /config/nginx/ldap-server.conf;
# enable for Authelia # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
location / { location / {
@ -22,11 +22,10 @@ server {
#auth_basic "Restricted"; #auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd; #auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth # enable for ldap auth (requires ldap-server.conf in the server block)
#auth_request /auth; #include /config/nginx/ldap-location.conf;
#error_page 401 =200 /ldaplogin;
# enable for Authelia # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf; include /config/nginx/proxy.conf;

Some files were not shown because too many files have changed in this diff Show more