Last active
August 29, 2015 14:01
-
-
Save simlegate/96c84ca5bb27bfc67926 to your computer and use it in GitHub Desktop.
配置Nginx服务Web静态资源
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 提高性能 | |
| // 让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