Skip to content

Instantly share code, notes, and snippets.

@sugumura
Created March 1, 2018 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sugumura/3e3c5b577a169251820cc352b179dce9 to your computer and use it in GitHub Desktop.
Save sugumura/3e3c5b577a169251820cc352b179dce9 to your computer and use it in GitHub Desktop.
nginxでキャッシュ時間を0にしたい場合
########
# ~~~
########
location /public {
alias /var/app/current/public;
gzip_static on;
gzip on;
expires 0;
add_header Cache-Control public;
}
########
# ~~~
########
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment