今天小編給大家分享一下怎么為Node.js程序配置使用Nginx服務器的相關知識點,內(nèi)容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
十年的安源網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。營銷型網(wǎng)站的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調整安源建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“安源網(wǎng)站設計”,“安源網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
node.js是一個基于chrome javascript運行時建立的平臺, 用于方便地搭建響應速度快、易于擴展的網(wǎng)絡應用。node.js 使用事件驅動, 非阻塞i/o 模型而得以輕量和高效,非常適合在分布式設備上運行的數(shù)據(jù)密集型的實時應用,如實時聊天等等。然而對于gzip編碼,靜態(tài)文件,http緩存,ssl處理,負載平衡和反向代理等,都可以通過nginx來完成,從而減小node.js的負載,并通過nginx強大的緩存來節(jié)省網(wǎng)站的流量從而提高網(wǎng)站的加載速度。
流程圖
nginx配置如下:
http { proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m; proxy_temp_path /var/tmp; include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; gzip on; gzip_comp_level 6; gzip_vary on; gzip_min_length 1000; gzip_proxied any; gzip_types text/plain text/html text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; gzip_buffers 16 8k; ssl_certificate /some/location/sillyfacesociety.com.bundle.crt; ssl_certificate_key /some/location/sillyfacesociety.com.key; ssl_protocols sslv3 tlsv1; ssl_ciphers high:!anull:!md5; upstream silly_face_society_upstream { server 127.0.0.1:61337; server 127.0.0.1:61338; keepalive 64; } server { listen 80; listen 443 ssl; server_name sillyfacesociety.com; return 301 $scheme://www.sillyfacesociety.com$request_uri; } server { listen 80; listen 443 ssl; server_name www.sillyfacesociety.com; error_page 502 /errors/502.html; location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) { root /usr/local/silly_face_society/node/public; access_log off; expires max; } location /errors { internal; alias /usr/local/silly_face_society/node/public/errors; } location / { proxy_redirect off; proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; proxy_set_header x-forwarded-proto $scheme; proxy_set_header host $http_host; proxy_set_header x-nginx-proxy true; proxy_set_header connection ""; proxy_http_version 1.1; proxy_cache one; proxy_cache_key sfs$request_uri$scheme; proxy_pass http://silly_face_society_upstream; } } }
配置段說明
http { ... upstream silly_face_society_upstream { server 127.0.0.1:61337; server 127.0.0.1:61338; keepalive 64; } ... }
nginx負載均衡多個nodo.js實例。keepalive 64 指示nginx在任何時候保持最少64個http/ 1.1連接到代理服務器。如果有更多的流量nginx將打開更多的連接。
http { ... server { ... location / { proxy_redirect off; proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; proxy_set_header host $http_host; proxy_set_header x-nginx-proxy true; ... proxy_set_header connection ""; proxy_http_version 1.1; proxy_pass http://silly_face_society_upstream; } ... } }
將符合哪些的請求發(fā)送到代理上。nginx的匹配規(guī)則可以取看看前面的文章。
nginx處理靜態(tài)內(nèi)容
http { ... server { ... location ~ ^/(images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) { root /usr/local/silly_face_society/node/public; access_log off; expires max; } ... } }
設置緩存
http { ... proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m; proxy_temp_path /var/tmp; ... } http { server { ... location / { ... proxy_cache one; proxy_cache_key sfs$request_uri$scheme; ... } ... } }
緩存是通過http頭部來控制的。
helloworld
試驗一下,我們來寫個helloworld.js
var http = require('http'); http.createserver(function (request, response) { response.writehead(200, {'content-type': 'text/plain'}); response.end('hello world\n'); }).listen(61337); console.log('server running at http://127.0.0.1:61337/');
然后用node helloworld.js指令開啟,這樣跑在本地的機子的nodejs的程序就算開起來了,占用的是8000端口,可自己修改。
此時確定在nginx的vhost.conf里面的設置應有:
server { listen 80; server_name jb51.net.jb51.net; location / { proxy_pass http://127.0.0.1:61337; } }
將網(wǎng)站域名設置好,然后端口設置為80,最后proxy_pass設置為http://127.0.0.1:61337,將所有從jb51.net:80的請求傳遞到nodejs程序去。
重啟nginx、訪問域名,就可以了看到helloworld了。
雖然node.js本身就可以做服務器是沒錯啦,比如welcome.js里面設置為80端口就可以了。
但是一個機子跑多個網(wǎng)站,其他網(wǎng)站又是用別的服務器,在80端口已經(jīng)被占用的情況下,是可以用代理到別的端口來處理的。
以上就是“怎么為Node.js程序配置使用Nginx服務器”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。