nginx 經常使用的配置

總結一下nginx上經常使用的配置操做,做爲記錄吧css

一、nginx 配置靜態文件如 js,csshtml

location ~* ^/wechat/report/.*\.(html|js|css|png|jpg|jpeg|gif|ico)$ {
     expires 1d;
     root /srv;
}

    經過配置上面,查看訪問的日誌,能夠看到,若是訪問的URL爲        http://localhost:port/wechat/report/index.htmlnginx

訪問日誌爲 /srv/wechat/report/index.html 能夠發現 在uri前面添加了root 配置日誌

二、http 跳轉httpscode

。。。。htm

相關文章
相關標籤/搜索