Skip to content

Instantly share code, notes, and snippets.

@hatappo
Created February 25, 2013 04:32
Show Gist options
  • Save hatappo/5027760 to your computer and use it in GitHub Desktop.
Save hatappo/5027760 to your computer and use it in GitHub Desktop.
画像ファイルだけ別のサブドメインでキャッシュ期間MAXでホストするnginxの設定サンプル。
server {
listen 80;
server_name bar.foo.jp;
root /var/www/html;
deny all;
location ~ .*\.(jpe?g|JPE?G|gif|GIF|png|PNG|ico|ICO) {
log_not_found off;
access_log off;
allow all;
expires max;
}
location / {
return 404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment