35 lines
840 B
Django/Jinja
35 lines
840 B
Django/Jinja
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name {{item.server_name}};
|
|
|
|
keepalive_timeout 200;
|
|
{{item.custom_config | default('') | indent(2)}}
|
|
|
|
location / {
|
|
proxy_pass {{item.proxy_pass}};
|
|
|
|
# set host
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For 42.42.42.42;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header X-Forwarded-Port $server_port;
|
|
|
|
# websocket proxy
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
# compression
|
|
gzip on;
|
|
gzip_types text/plain application/xml application/json;
|
|
gzip_proxied no-cache no-store private expired auth;
|
|
gzip_min_length 1000;
|
|
|
|
# cache
|
|
proxy_cache STATIC;
|
|
}
|
|
}
|
|
|