Sha256: bebd4be2c0e187990da2c3f6eebd3a75fb3c9d099b9cb2568f1c74497ef44a1c
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
worker_processes 1; error_log stderr; pid nginx.pid; events { worker_connections 768; } http { types_hash_max_size 2048; include mime.types; charset UTF-8; gzip on; gzip_comp_level 6; gzip_min_length 256; gzip_types text/plain text/css application/json application/javascript application/xml; gzip_proxied any; gzip_vary on; server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /usr/share/nginx/html; index index.html index.htm; port_in_redirect off; add_header X-Content-Type-Options "nosniff"; location / { try_files $uri $uri.html =404; expires 1h; } location ~* \.(?:ico|gif|jpe?g|png|svg|webp)$ { expires 31536000s; add_header Cache-Control "public, max-age=31536000, immutable"; } location ~* \.(css|js)$ { expires 31536000s; add_header Cache-Control "public, max-age=31536000, immutable"; charset utf-8; gzip_static on; } location ~* \.woff2$ { expires 31536000s; add_header Cache-Control "public, max-age=31536000, immutable"; types { font/woff2 woff2; } gzip off; add_header Vary Accept-Encoding; } location ~* \.webmanifest$ { charset off; gzip off; } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
staticky-0.1.0 | site_template/nginx.conf |