mirror of
https://github.com/cubixle/gridlock.git
synced 2026-04-24 18:34:43 +01:00
16 lines
488 B
Nginx Configuration File
16 lines
488 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
|