From 683b932581d1a39b90687d36ec12c872952721c1 Mon Sep 17 00:00:00 2001 From: Tommy Date: Tue, 15 Aug 2023 17:47:37 -0700 Subject: [PATCH] Update reverse proxy configuration --- swag/nginx/proxy-confs/gitea.subdomain.conf | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/swag/nginx/proxy-confs/gitea.subdomain.conf b/swag/nginx/proxy-confs/gitea.subdomain.conf index e465daa..4ca9742 100644 --- a/swag/nginx/proxy-confs/gitea.subdomain.conf +++ b/swag/nginx/proxy-confs/gitea.subdomain.conf @@ -1,18 +1,19 @@ -# make sure that your dns has a cname set for gitea and the following parameters in /data/gitea/conf/app.ini are edited +## Version 2023/05/31 +# make sure that your gitea container is named gitea +# make sure that your dns has a cname set for gitea +# edit the following parameters in /data/gitea/conf/app.ini # [server] # SSH_DOMAIN = gitea.server.com # ROOT_URL = https://gitea.server.com/ # DOMAIN = gitea.server.com server { - listen 443 ssl; - listen [::]:443 ssl; + listen 443 ssl http2; + listen [::]:443 ssl http2; - server_name git.*; + server_name gitea.*; include /config/nginx/ssl.conf; - - # HSTS (ngx_http_headers_module is required) (63072000 seconds) add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always; client_max_body_size 0; @@ -23,6 +24,9 @@ server { # enable for Authelia (requires authelia-location.conf in the location block) #include /config/nginx/authelia-server.conf; + # enable for Authentik (requires authentik-location.conf in the location block) + #include /config/nginx/authentik-server.conf; + location / { # enable the next two lines for http auth #auth_basic "Restricted"; @@ -34,6 +38,9 @@ server { # enable for Authelia (requires authelia-server.conf in the server block) #include /config/nginx/authelia-location.conf; + # enable for Authentik (requires authentik-server.conf in the server block) + #include /config/nginx/authentik-location.conf; + include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app gitea;