- Nginx配置文件詳解
#啟動(dòng)子進(jìn)程程序默認(rèn)用戶
#user nobody;
#一個(gè)主進(jìn)程和多個(gè)工作進(jìn)程。工作進(jìn)程是單進(jìn)程的,且不需要特殊授權(quán)即可運(yùn)行;這里定義的是工作進(jìn)程數(shù)量
worker_processes 1;
#全局錯(cuò)誤日志的位置及日志格式
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
#每個(gè)工作進(jìn)程最大的并發(fā)數(shù)
worker_connections 1024;
}
#http服務(wù)器設(shè)置
http {
#設(shè)定mime類型,類型由mime.type文件定義
include mime.types;
#
default_type Application/octet-stream;
#日志格式
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#$remote_addr與$http_x_forwarded_for用以記錄客戶端的ip地址;
#$remote_user:用來記錄客戶端用戶名稱;
#$time_local: 用來記錄訪問時(shí)間與時(shí)區(qū);
#$request: 用來記錄請求的url與http協(xié)議;
#$status: 用來記錄請求狀態(tài);成功是200,
#$body_bytes_sent :記錄發(fā)送給客戶端文件主體內(nèi)容大小;
#$http_referer:用來記錄從那個(gè)頁面鏈接訪問過來的;
#$http_user_agent:記錄客戶瀏覽器的相關(guān)信息;
#全局訪問日志路徑
#access_log logs/access.log main;
#sendfile指令指定 nginx 是否調(diào)用sendfile 函數(shù)(zero copy 方式)來輸出文件,對于普通應(yīng)用,必須設(shè)為on。如果用來進(jìn)行下載等應(yīng)用磁盤IO重負(fù)載應(yīng)用,可設(shè)置為off,以平衡磁盤與網(wǎng)絡(luò)IO處理速度,降低系統(tǒng)uptime。
sendfile on;
#此選項(xiàng)可以減少網(wǎng)絡(luò)報(bào)文段的數(shù)量
#tcp_nopush on;
#長連接超時(shí)時(shí)間
#keepalive_timeout 0;
keepalive_timeout 65;
#開啟壓縮
#gzip on;
#配置虛擬主機(jī)
server {
#虛擬主機(jī)使用的端口
listen 80;
#虛擬主機(jī)域名
server_name localhost;
#虛擬主機(jī)支持的字符集
#charset koi8-r;
#虛擬主機(jī)的訪問日志路徑
#access_log logs/host.access.log main;
#定義web根路徑
location / {
#根目錄路徑
root html;
#索引頁
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#根據(jù)錯(cuò)誤碼 返回對應(yīng)的頁面
error_page 500 502 503 504 /50x.html;
#定義頁面路徑
location = /50x.html {
root html;
}
#定義反向代理服務(wù)器 數(shù)據(jù)服務(wù)器是lamp模型
# proxy the php scripts to Apache listening on 127.0.0.1:80
#
#location ~ .php$ {
# proxy_pass http://127.0.0.1;
#}
#定義PHP為本機(jī)服務(wù)的模型
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ .php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#拒絕nginx DR目錄及子目錄下的.htaccess文件訪問
#location ~ /.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
#https的配置方案
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
總結(jié)
nginx的主配置文件
重點(diǎn):nginx的主配置文件中的字段含義及格式
難點(diǎn):修改時(shí)注意格式問題