diff --git a/freshrss.subdomain.conf.sample b/freshrss.subdomain.conf.sample index fc0657e..5749ebe 100644 --- a/freshrss.subdomain.conf.sample +++ b/freshrss.subdomain.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # make sure that your dns has a cname set for freshrss server { @@ -36,7 +36,6 @@ server { set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_redirect off; proxy_buffering off; proxy_set_header X-Forwarded-Port $server_port; proxy_cookie_path / "/; HTTPOnly; Secure"; diff --git a/freshrss.subfolder.conf.sample b/freshrss.subfolder.conf.sample index 9e1f461..8dc283d 100644 --- a/freshrss.subfolder.conf.sample +++ b/freshrss.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # freshrss does not have a base url setting location /freshrss { @@ -25,7 +25,6 @@ location ^~ /freshrss/ { proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /freshrss(.*) $1 break; - proxy_redirect off; proxy_buffering off; proxy_set_header X-Forwarded-Port $server_port; proxy_cookie_path / "/; HTTPOnly; Secure"; diff --git a/ghost.subdomain.conf.sample b/ghost.subdomain.conf.sample index 85561d7..ad96072 100644 --- a/ghost.subdomain.conf.sample +++ b/ghost.subdomain.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # make sure that your dns has a cname set for ghost and that your ghost config is not using a subdirectory. server { @@ -36,6 +36,5 @@ server { set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_redirect off; } } diff --git a/ghost.subfolder.conf.sample b/ghost.subfolder.conf.sample index 8d3020c..242a1e0 100644 --- a/ghost.subfolder.conf.sample +++ b/ghost.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # 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 @@ -11,8 +11,8 @@ location /blog { #auth_request /auth; #error_page 401 =200 /ldaplogin; - # enable for Authelia, also enable authelia-server.conf in the default site config - #include /config/nginx/authelia-location.conf; + # enable for Authelia, also enable authelia-server.conf in the default site config + #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; @@ -21,5 +21,4 @@ location /blog { set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_redirect off; } diff --git a/nextcloud.subfolder.conf.sample b/nextcloud.subfolder.conf.sample index f64dac4..0fa9195 100644 --- a/nextcloud.subfolder.conf.sample +++ b/nextcloud.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # Assuming this container is called "swag", edit your nextcloud container's config # located at /config/www/nextcloud/config/config.php and add the following lines before the ");": # 'trusted_proxies' => ['swag'], @@ -36,6 +36,5 @@ location ^~ /nextcloud/ { proxy_max_temp_file_size 2048m; proxy_set_header Range $http_range; proxy_set_header If-Range $http_if_range; - proxy_redirect off; proxy_ssl_session_reuse off; } diff --git a/synclounge.subdomain.conf.sample b/synclounge.subdomain.conf.sample index 694c0d1..fe9feb2 100644 --- a/synclounge.subdomain.conf.sample +++ b/synclounge.subdomain.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # Use this with SyncLounge v3 and up. # Make sure that you do not have HSTS enabled, otherwise http access won't work # Make sure that your dns has a cname set for synclounge @@ -40,7 +40,6 @@ server { set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_redirect off; proxy_buffering off; proxy_socket_keepalive on; proxy_set_header X-Forwarded-Proto $scheme; diff --git a/synclounge.subfolder.conf.sample b/synclounge.subfolder.conf.sample index 4cb1654..3224526 100644 --- a/synclounge.subfolder.conf.sample +++ b/synclounge.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # Use this with SyncLounge v3 or up # # To allow non-secure connections (http), which is required by some Plex clients, modify the first block in site-confs/default to look something like this: @@ -45,7 +45,6 @@ location /synclounge/ { rewrite /synclounge(.*) $1 break; - proxy_redirect off; proxy_buffering off; proxy_socket_keepalive on; proxy_set_header X-Forwarded-Proto $scheme; diff --git a/youtube-dl.subfolder.conf.sample b/youtube-dl.subfolder.conf.sample index 0f99252..74f9c1d 100644 --- a/youtube-dl.subfolder.conf.sample +++ b/youtube-dl.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2021/05/18 +## Version 2021/07/08 # Works with this youtube-dl Fork: https://github.com/nbr23/youtube-dl-server location /youtube-dl { @@ -21,7 +21,6 @@ location ^~ /youtube-dl/ { set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; - proxy_redirect off; proxy_set_header Referer ''; # next line doesn't work with the latest version of: https://github.com/nbr23/youtube-dl-server # proxy_set_header Host $upstream_app:8080;