aboutsummaryrefslogtreecommitdiff
path: root/templates/nginx
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-19 02:05:39 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-19 02:42:42 +0800
commit4c5df72057fe02257e243de37930a47425a84722 (patch)
treef782d0e85c4a784b659e0da29f0bbf4fc25fc827 /templates/nginx
parent89e31c19bb8fca91c54a73ff7a7f4e837d1dbf93 (diff)
downloadcrupest-4c5df72057fe02257e243de37930a47425a84722.tar.gz
crupest-4c5df72057fe02257e243de37930a47425a84722.tar.bz2
crupest-4c5df72057fe02257e243de37930a47425a84722.zip
chore(docker): remove crupest-api, forgejo and move dropped.
Diffstat (limited to 'templates/nginx')
-rw-r--r--templates/nginx/conf.d/git.conf.template20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/nginx/conf.d/git.conf.template b/templates/nginx/conf.d/git.conf.template
deleted file mode 100644
index 3a2948c..0000000
--- a/templates/nginx/conf.d/git.conf.template
+++ /dev/null
@@ -1,20 +0,0 @@
-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;
-}