標籤:request include 設定檔 伺服器 nobody
Nginx作為Web伺服器時,其設定檔參數如下:
#user nobody;#預設的運行使用者
worker_processes 1;#背景工作處理序數,建議和CPU核心數一致,預設為1
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;#每個進程處理的串連數
}
http {
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"‘;
#access_log logs/access.log main;#訪問日誌配置
sendfile on;#是否支援下載
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {#Web服務配置,如有多個虛擬機器主機,可以為每個虛擬機器主機配置server{}段
listen 80;
server_name www.benet.com;#網域名稱(FQDN)
#charset koi8-r;#預設的字元集
#access_log logs/host.access.log main;
location / {#配置根目錄
root /www/html;#網站根目錄
index index.html index.htm;#預設首頁
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;#內部錯誤的反饋頁面
location = /50x.html {#錯誤頁面配置
root /www/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {#訪問.php頁面的配置段
root /www/html;#PHP網頁主目錄
fastcgi_pass 127.0.0.1:9000;#PHP-FPM的監聽地址
fastcgi_index index.php;#PHP首頁檔案
include fastcgi.conf;
}
# deny access to .htaccess files, if Apache‘s document root
# concurs with nginx‘s one
#
#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 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;
# }
#}
}
本文出自 “一萬年太久,只爭朝夕” 部落格,請務必保留此出處http://zengwj1949.blog.51cto.com/10747365/1907201
Nginx設定檔(作為Web伺服器)