Skip to content

Instantly share code, notes, and snippets.

@simlegate
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save simlegate/96c84ca5bb27bfc67926 to your computer and use it in GitHub Desktop.

Select an option

Save simlegate/96c84ca5bb27bfc67926 to your computer and use it in GitHub Desktop.
配置Nginx服务Web静态资源
// 提高性能
// 让rails server只处理动态请求,不必浪费资源处理静态文件请求
// rails server处理静态文件的性能完全不能和nginx,apache之类的比。
location ~* ^/(images|javascripts|stylesheets|img)/ {
access_log off;
log_not_found off;
expires max;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment