aboutsummaryrefslogtreecommitdiff
path: root/template/nginx/static-file.conf.template
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-11-20 13:37:05 +0800
committercrupest <crupest@outlook.com>2022-11-20 13:37:05 +0800
commit4e6dcdc7c56e65cb8d69e35ec0b0ebc5a47f940c (patch)
treee438ebe543bee5e2afba086609096ec5ef4fc437 /template/nginx/static-file.conf.template
parentc20cacc48fde3da0cdb0fbd08184ae5637044c99 (diff)
downloadcrupest-4e6dcdc7c56e65cb8d69e35ec0b0ebc5a47f940c.tar.gz
crupest-4e6dcdc7c56e65cb8d69e35ec0b0ebc5a47f940c.tar.bz2
crupest-4e6dcdc7c56e65cb8d69e35ec0b0ebc5a47f940c.zip
Fix some nginx bugs.
Diffstat (limited to 'template/nginx/static-file.conf.template')
-rw-r--r--template/nginx/static-file.conf.template12
1 files changed, 12 insertions, 0 deletions
diff --git a/template/nginx/static-file.conf.template b/template/nginx/static-file.conf.template
index 2097302..1597d10 100644
--- a/template/nginx/static-file.conf.template
+++ b/template/nginx/static-file.conf.template
@@ -7,4 +7,16 @@ server {
ssl_certificate_key /etc/letsencrypt/live/${CRUPEST_DOMAIN}/privkey.pem;
root ${CRUPEST_NGINX_ROOT};
+
+ client_max_body_size 5G;
+}
+
+server {
+ listen 80;
+ listen [::]:80;
+ server_name ${CRUPEST_NGINX_SUBDOMAIN}.${CRUPEST_DOMAIN};
+
+ location / {
+ return 301 https://$host$request_uri;
+ }
}