Nginx是一款業界流行的高性能的 Web
和 反向代理
服務器,也是一個 IMAP/POP3/SMTP 代理服務器。php
在高鏈接併發的狀況下,Nginx
是Apache
服務器不錯的替代品。html
這裏直接上個人配置文件了,僅供參考:nginx
#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 8080; server_name 127.0.0.1; root /var/www/html; index index.html index.htm index.php; #charset koi8-r; #access_log logs/host.access.log main; # CI應用1僞靜態 實際根據項目目錄結果配置 location /HealthExam2/wwwroot/manager { # root html; # autoindex on; #try_files $uri $uri/ /index.php; try_files $uri $uri/ /HealthExam2/wwwroot/manager/index.php?$is_args$args; #root html; #index index.html index.htm index.php; } // CI應用2僞靜態 實際根據項目目錄結果配置 location /HealthExam2/wwwroot/service { try_files $uri $uri/ /HealthExam2/wwwroot/service/index.php?$is_args$args; } #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; } # 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)(.*)$ { root /var/www/html; fastcgi_pass 127.0.0.1:9000; #fastcgi_index index.php; #正則從新賦值:$1->$fastcgi_script_name $2->$fastcgi_path_info fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_NAME $fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; # 隱藏index.php需開啓 fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; } # location ~ \.php$ { # 設置監聽端口 #fastcgi_pass 127.0.0.1:9000; # 設置nginx的默認首頁文件(上面已經設置過了,能夠刪除) #fastcgi_index index.php; # 設置腳本文件請求的路徑 #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 引入fastcgi的配置文件 #include fastcgi_params; #} # 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; # } #} }