Nginx ("engine x") 是一個高性能的HTTP和反向代理服務器,也是一個IMAP/POP3/SMTP服務器。Nginx是由Igor Sysoev爲俄羅斯訪問量第二的Rambler.ru站點開發的,第一個公開版本0.1.0發佈於2004年10月4日。其將源代碼以類BSD許可證的形式發佈,因它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而聞名。關於Nginx的優勢,我在這裏就不討論了,網上的資料多的是。php
如何使用Nginx快速搭建一個高性能的網站?css
1.首先去Nginx官網下載一個最新版本的Nginx,下載地址:http://nginx.org/en/download.html。我這裏下載的版本是:nginx/Windows-1.11.6。下載完成以後,獲得一個.zip的壓縮包,把壓縮包解壓到D盤根目錄。如圖1-1html
圖1-1nginx
2.修改配置文件。打開「conf」文件夾下的「nginx.conf」文件。其中修改的主要部分見圖1-2。瀏覽器
圖1-2服務器
下面是我修改後的完整配置文件信息:網絡
#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;#開啓高效文件傳輸模式,sendfile指令指定nginx是否調用sendfile函數來輸出文件,對於普通應用設爲 on,若是用來進行下載等應用磁盤IO重負載應用,可設置爲off,以平衡磁盤與網絡I/O處理速度,下降系統的負載。注意:若是圖片顯示不正常把這個改爲off。 #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #長鏈接超時時間,單位是秒 #gzip on; #啓用Gizp壓縮 #服務器的集羣 upstream rj.nginx.com { #服務器集羣名字 server 127.0.0.1:8001 weight=1;#服務器配置 weight是權重的意思,權重越大,分配的機率越大。 server 127.0.0.1:8002 weight=2; } #當前的Nginx的配置 server { listen 80; #監聽80端口,能夠改爲其餘端口 server_name localhost; # 當前服務的域名 #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://rj.nginx.com; proxy_redirect default; } location ~ \.(jpg|png|jpeg|bmp|gif|swf|css)$ { expires 30d; root /nginx-1.4.7;#root: break; } #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 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 # #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; # } #} }
3.打開命令行,定位到Nginx當前目錄,使用「start nginx」命令啓動nginx。如圖1-3session
圖1-3app
4.打開瀏覽器,輸入:http://localhost/。能夠發現,瀏覽的網站,會在兩個站點見不停的切換,而且站點2的使用概率會稍高一些,由於站點2的權重設置的比站點1的大。如圖1-4tcp
from: https://www.cnblogs.com/renjing/p/6126284.html