annotate nginx.default.conf @ 26:d3b72a8bfbe9
 default tip 
Add rate limiting, change moveLogs.sh to only operate on non-empty files
 | author | 
 Violet7 | 
 | date | 
 Sat, 01 Nov 2025 22:12:56 -0700 | 
 | parents | 
 bbafc54bbd26  | 
 | children | 
  | 
 | rev | 
   line source | 
  
| 
0
 | 
     1 		client_max_body_size 0;
 | 
| 
 | 
     2 		proxy_http_version 1.1;
 | 
| 
 | 
     3 		proxy_set_header Host $http_host;
 | 
| 
 | 
     4 		proxy_set_header X-Forwarded-Proto $scheme;
 | 
| 
 | 
     5 		proxy_set_header X-Real-IP $remote_addr;
 | 
| 
 | 
     6 		charset utf-8;
 | 
| 
 | 
     7 
 | 
| 
11
 | 
     8 		location ~ "^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)$" {
 | 
| 
 | 
     9 			default_type text/plain;
 | 
| 
 | 
    10 			return 200 "$1.ZVfdXrOoSbmeTJ4l7OuY0SI388jxO8JHcxGPdqM1Jgk";
 | 
| 
 | 
    11 		}
 | 
| 
 | 
    12 
 | 
| 
0
 | 
    13 		location / {
 | 
| 
 | 
    14 			proxy_pass http://127.0.0.1:8080;
 | 
| 
 | 
    15 		}
 |