一、NGINX內建的基本模組
1、NGINX內核模組
2、EVENTS模組
3、HTTP核心模組
二、NGINXXig、NGINXpiped用於控制NGINX伺服器的基本功能
三、EVENT模組
#user nobody; worker_processes 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 { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root 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 html; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } }
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid;
1、基本指令
rrevents { worker_connections 1024; }
NGINXXX將進入的HTTP請求頭與NGINX設定檔中各個server區段比較,並且選擇第一個被匹配的server區段
匹配過程按如下流程處理:1、全域名,靜態域名匹配
2、開始部分使用通配符的域名,如:*.xxx.com
3、結尾部分使用通配符的域名,如:www.xxx.*
4、帶有正則表達式的域名
如果還沒有找到匹配的域名,繼續依照下面的順序在設定檔中選擇一個server:
1、符合listen指令被標記為[default|default_server]的區段
2、符合listen指令(或隱含有listen 80)的第一個server區段
以上就介紹了NGINX基本模組與配置,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。