From b0aaf9ea70e2900f4587d170bce3f12d3c397bef Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Sat, 31 May 2025 17:04:42 -0700 Subject: [PATCH] Fix indentation in nginx.conf --- conf/nginx.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 714f3cd..2a718e3 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -14,8 +14,8 @@ http { charset utf-8; default_type text/html; - ssl_certificate /var/www/certs/miti.sh/fullchain.pem; - ssl_certificate_key /var/www/certs/miti.sh/privkey.pem; + ssl_certificate /var/www/certs/miti.sh/fullchain.pem; + ssl_certificate_key /var/www/certs/miti.sh/privkey.pem; location ^~ /.well-known/acme-challenge { alias /var/www/dehydrated; @@ -39,14 +39,14 @@ http { } server { - listen 443 ssl; - server_name git.miti.sh; + listen 443 ssl; + server_name git.miti.sh; location ^~ /.well-known/acme-challenge { alias /var/www/dehydrated; } - location / { + location / { client_max_body_size 1024M; proxy_pass http://localhost:3000; proxy_set_header Connection $http_connection; @@ -59,7 +59,7 @@ http { } server { - server_name apps.miti.sh; + server_name apps.miti.sh; location ^~ /.well-known/acme-challenge { alias /var/www/dehydrated;