diff options
Diffstat (limited to 'nginx.inc.conf')
-rw-r--r-- | nginx.inc.conf | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/nginx.inc.conf b/nginx.inc.conf new file mode 100644 index 0000000..b795a1c --- /dev/null +++ b/nginx.inc.conf @@ -0,0 +1,42 @@ +location /json/ { + expires 1y; +} + +location /dump/ { + expires 1y; + location ~ ^/dump/(bgm|sfx)/ { add_header X-Content-Duration "0"; } +} + +location ~ ^/(css/font|js/lib)/ { + expires 1d; +} + +location / { + set $warned NO; + if ($http_cookie ~ "warned") { + set $warned YES; + } + if ($args ~ "warned") { + set $warned YES; + } + if ($warned = NO) { + return 307 /warn.html; + } +} + +location /setcookie.html { + add_header Set-Cookie "warned=1; Expires=Tue, 19 Jan 2038 00:00:00 GMT; HttpOnly"; + return 301 /; +} + +location /warn.html { + break; +} + +location /robots.txt { + break; +} + +expires 5s; +add_header Cache-Control public; +add_header X-UA-Compatible "IE=edge"; |