server#error_page 404 /404.html; //指定錯誤頁面
# redirect server error pages to the static page /50x.html
# 把後台錯誤重定向到靜態的50x.html頁面
error_page 500 502 503 504 /50x.html;
當路徑是/50x.html去找/usr/share/nginx/html裡面的檔案
location = /50x.html
# proxy the php scripts to apache listening on 127.0.0.1:80
如果訪問的是.php結尾會把請求**給
# **php指令碼到80埠上的apache伺服器
值apache伺服器
#location ~ \.php$
# pass the php scripts to fastcgi server listening on 127.0.0.1:9000
# 把php指令碼9000埠上監聽的fastcgi服務
執行時php伺服器
如果訪問的是.php結尾會把請求**給127.0.0.1:9000;
#location ~ \.php$
# deny access to .htaccess files, if apache's document root
# concurs with nginx's one
# 不允許訪問.htaccess檔案
#location ~ /\.ht
}// 重啟
nginx -s reload
systenmctl reload nginx.service
// 驗證
nginx -t
// 多級**
http_x_forwarded_for 客戶端**ip1 **ip2
nginx中server配置簡單示例
ubuntu14.04下的nginx配置 配置檔案nginx.conf server error page 500 502 503 504 50x.html location 50x.html 1 上述配置中第乙個location中的root指定與nginx同目錄下的html目錄,index指定預設...
Nginx學習 安裝 命令 server配置
注意 以下內容是基於舊版nginx,配置資訊位置和檔案目錄和最新版不一致,但依葫蘆畫瓢是一樣的 nginx 的安裝 安裝準備 nginx依賴於pcre庫,要先安裝pcre yum install pcre pcre devel cd usr local src wget tar zxvfnginx ...
nginx中server的匹配順序
在開始處理乙個http請求時,nginx會取出header頭中的host,與nginx.conf中每個server的server name進行匹配,以此決定到底由哪乙個server塊來處理這個請求。server name與host匹配優先順序如下 1 完全匹配 2 萬用字元在前的,如 test.co...