diff options
| author | crupest <crupest@outlook.com> | 2024-11-11 01:12:29 +0800 | 
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-01-20 23:24:41 +0800 | 
| commit | a293e50247ff6e61cd730b6ef02c287d9264f17b (patch) | |
| tree | 0e5241878de3fc7cd36e4e5bcd2eac3ae1b063f6 /templates/nginx/conf.d/git.conf.template | |
| parent | f81f0a9a586574aeeeca395d345ff9780c6fde68 (diff) | |
| download | crupest-a293e50247ff6e61cd730b6ef02c287d9264f17b.tar.gz crupest-a293e50247ff6e61cd730b6ef02c287d9264f17b.tar.bz2 crupest-a293e50247ff6e61cd730b6ef02c287d9264f17b.zip | |
HALF WORK: 2024.1.20 - 4
Diffstat (limited to 'templates/nginx/conf.d/git.conf.template')
| -rw-r--r-- | templates/nginx/conf.d/git.conf.template | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/templates/nginx/conf.d/git.conf.template b/templates/nginx/conf.d/git.conf.template new file mode 100644 index 0000000..3a2948c --- /dev/null +++ b/templates/nginx/conf.d/git.conf.template @@ -0,0 +1,20 @@ +server { +    server_name git.${CRUPEST_DOMAIN}; +    include common/https-listen; +     +    location / { +        include common/proxy-common; +        proxy_pass http://forgejo:3000/; +    } + +    client_max_body_size 5G; +} + + +server { +    server_name git.${CRUPEST_DOMAIN}; +    include common/http-listen; + +    include common/https-redirect; +    include common/acme-challenge; +} | 
