start of gridlock

This commit is contained in:
cubixle
2024-04-19 18:56:34 +01:00
commit 4e5b492745
8 changed files with 1363 additions and 0 deletions

15
nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
server_name *.cubixle.me;
location / {
proxy_pass http://localhost:8070;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 1M;
}
}