Nginx服務器中瀏覽器本地緩存和虛擬機的相關設置
自動列出目錄配置:
下載過開源軟件的都知道,一個很簡單的頁面列出了所有版本的源碼包,這就是開啟了自動列出目錄
如下配置,在虛擬主機location / {……}目錄控制中配置自動列出目錄:
location / {
autoindex on;
}
瀏覽器本地緩存設置:
瀏覽器是為了加速瀏覽,瀏覽器在用戶磁盤上對最近請求過的文件進行存儲,當訪問者再次請求這個頁面,
瀏覽器可以從本地磁盤顯示文件,以達到加速瀏覽的效果,節(jié)約了網絡資源,提高了網絡效率
關鍵字: expires
默認值: off
作用域: http,server.location
用途: 通過expires指令控制http應答中的”Expires”和”Cache-Control”的頭信息
配置項:
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
配置虛擬主機:
nginx可以配置多種類型的虛擬主機,基于ip的 基于域名的 基于端口的,
簡單一句話說就是不同ip相同端口,不同端口相同ip or域名,不同域名相同端口
下面是基于相同域名的虛擬主機配置文件:
server {
listen 80 default;
server_name www.wpython.com;
index index.html index.htm index.php;
root /alidata/www/www.wpython.com;
# wordpress 偽靜態(tài)規(guī)則
location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
access_log /alidata/log/nginx/access/www.wpython.com.log;
}
server {
listen 80 default;
server_name www.pyyw.net;
index index.html index.htm index.php;
root /alidata/www/www.pyyw.net;
# wordpress 偽靜態(tài)規(guī)則
location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
access_log /alidata/log/nginx/access/www.pyyw.net.log;
}
相關文章
比較完整的Nginx配置文件nginx.conf常用參數中文詳解
這篇文章主要介紹了比較完整的Nginx配置文件nginx.conf常用參數中文詳解,需要的朋友可以參考下2015-07-07
nginx?80端口配置多個location無效訪問404問題
這篇文章主要介紹了nginx?80端口配置多個location無效訪問404問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-06-06
Nginx服務器中l(wèi)ocation配置的一些基本要點解析
這篇文章主要介紹了Nginx服務器中l(wèi)ocation配置的一些基本要點解析,特別對管理以及查找匹配作出了詳細的講解,需要的朋友可以參考下2015-12-12

