1
0
mirror of https://github.com/tommytran732/Gitea-Docker-Compose synced 2024-11-12 15:01:32 -05:00

Update reverse proxy configuration

This commit is contained in:
Tommy 2023-08-15 17:47:37 -07:00 committed by GitHub
parent cdf8893a28
commit 683b932581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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] # [server]
# SSH_DOMAIN = gitea.server.com # SSH_DOMAIN = gitea.server.com
# ROOT_URL = https://gitea.server.com/ # ROOT_URL = https://gitea.server.com/
# DOMAIN = gitea.server.com # DOMAIN = gitea.server.com
server { server {
listen 443 ssl; listen 443 ssl http2;
listen [::]:443 ssl; listen [::]:443 ssl http2;
server_name git.*; server_name gitea.*;
include /config/nginx/ssl.conf; 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; add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
client_max_body_size 0; client_max_body_size 0;
@ -23,6 +24,9 @@ server {
# enable for Authelia (requires authelia-location.conf in the location block) # enable for Authelia (requires authelia-location.conf in the location block)
#include /config/nginx/authelia-server.conf; #include /config/nginx/authelia-server.conf;
# enable for Authentik (requires authentik-location.conf in the location block)
#include /config/nginx/authentik-server.conf;
location / { location / {
# enable the next two lines for http auth # enable the next two lines for http auth
#auth_basic "Restricted"; #auth_basic "Restricted";
@ -34,6 +38,9 @@ server {
# enable for Authelia (requires authelia-server.conf in the server block) # enable for Authelia (requires authelia-server.conf in the server block)
#include /config/nginx/authelia-location.conf; #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/proxy.conf;
include /config/nginx/resolver.conf; include /config/nginx/resolver.conf;
set $upstream_app gitea; set $upstream_app gitea;