Files
koodiklinikka.fi/deploy/templates/nginx.j2
2015-01-13 23:30:33 +02:00

16 lines
364 B
Django/Jinja

server {
listen 80;
server_name {{ public_hostname }};
root {{ projects_path }}/public;
location / {
try_files $uri /index.html;
gzip_static on;
gzip_http_version 1.1;
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
}
}