mirror of
https://github.com/cubixle/gridlock.git
synced 2026-04-24 21:24:42 +01:00
start of gridlock
This commit is contained in:
15
nginx.conf
Normal file
15
nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user