Nginx ("engine x") 是一個高性能的HTTP和反向代理伺服器,也是一個IMAP/POP3/SMTP伺服器。Nginx是由Igor Sysoev為俄羅斯訪問量第二的Rambler.ru站點開發的,第一個公開版本0.1.0發佈於2004年10月4日。其將源代碼以類BSD許可證的形式發佈, ...
Nginx ("engine x") 是一個高性能的HTTP和反向代理伺服器,也是一個IMAP/POP3/SMTP伺服器。Nginx是由Igor Sysoev為俄羅斯訪問量第二的Rambler.ru站點開發的,第一個公開版本0.1.0發佈於2004年10月4日。其將源代碼以類BSD許可證的形式發佈,因它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而聞名。關於Nginx的優點,我在這裡就不討論了,網上的資料多的是。
如何使用Nginx快速搭建一個高性能的網站?
1.首先去Nginx官網下載一個最新版本的Nginx,下載地址:http://nginx.org/en/download.html。我這裡下載的版本是:nginx/Windows-1.11.6。下載完成之後,得到一個.zip的壓縮包,把壓縮包解壓到D盤根目錄。如圖1-1
圖1-1
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; # } #} }View Code
3.打開命令行,定位到Nginx當前目錄,使用“start nginx”命令啟動nginx。如圖1-3
圖1-3
4.打開瀏覽器,輸入:http://localhost/。可以發現,瀏覽的網站,會在兩個站點見不停的切換,並且站點2的使用幾率會稍高一些,因為站點2的權重設置的比站點1的大。如圖1-4