一.nginx.conf檔案
1.目錄
/etc/nginx/nginx.conf
2.nginx.conf檔案如下
3.nginx.conf檔案詳解,針對第二條
(1)user:設計nginx服務的系統使用使用者
(2)worker_processes 工作程序數(設定成和cpu個數一致)
(3)error_log /var/log/nginx/error.log warn; 錯誤日誌
(4)pid /var/run/nginx.pid; 服務啟動時候pid
(5)events: worker_connections (每個程序允許的最大連線數,預設1024)
(6)events: use 工作程序數
(7)nginx預設的log_format記錄哪些內容。
remote_addr:表示客戶端位址
remote_user:http使用者端 客戶請求nginx認證的使用者名稱
time_local:時間
request:請求:get/post http的協議版本
status:返回的狀態
body_bytes_sent:從客戶端響應給客戶端 body資訊
http_user_agent:頭資訊內容,表示客戶端用什麼來訪問的
http_x_forwarded_for:記錄每一級請求http資訊
(8)檢查nginx配置檔案格式是否正確
nginx -t /etc/nginx/nginx.conf
(9)檢查nginx配置檔案路徑是否正確
nginx -c /etc/nginx/nginx.conf
在niginx中 include /etc/nginx/conf.d/*.conf; 包含了default.conf檔案
1.default.conf檔案如下
server
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#error_page 500 502 503 504 404 /50x.html;
location = /50x.html
# proxy the php scripts to apache listening on 127.0.0.1:80
##location ~ \.php$
# pass the php scripts to fastcgi server listening on 127.0.0.1:9000
##location ~ \.php$
# deny access to .htaccess files, if apache's document root
# concurs with nginx's one
##location ~ /\.ht
}
2.部分配置詳解
(1)listen 監聽埠 預設80
nginx服務啟動後直接輸入ip即可
(2)啟動頁位置
location /
可以修改其/usr/share/nginx/html/index.html 再去訪問啟動頁,發現內容改變(下圖加了"(ku)")
(2)錯誤頁面
error_page 跟錯誤型別 錯誤頁面
如 error_page 404 /404.html 表示找不到則跳轉404.html頁面
後續會持續更新~
別人能做到的事,自己也可以做到。-----酷酷的韓
Nginx配置詳解
nginx的主要配置檔案是nginx.conf,位於安裝目錄下的nginx conf資料夾裡,主要的配置引數如下 定義nginx執行的使用者和使用者組 user nobody nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,...
nginx配置詳解
定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log var log nginx error...
NGINX配置詳解
nginx 配置檔案 user nginx 使用者worker processes 8 工作程序,根據硬體調整,大於等於cpu核數 error log logs nginx error.log crit 錯誤日誌 pid logs nginx.pid pid放置的位置 worker rlimit n...