nginx是一種功能強大且廣泛應用於Web伺服器的工具。它也用作多個Web應用程式伺服器的前端代理伺服器。本篇文章將介紹關於將Nginx伺服器設定為Node.js應用程式的前端代理伺服器。
1、安裝node.js
#先安裝node.js安裝所需的軟體包,並在啟動板上加入可用的nodejs的PPA。之後使用以下指令安裝nodejs。
$ sudo apt-get install python-software-properties python g++ make $ sudo add-apt-repository ppa:chris-lea/node.js $ sudo apt-get update $ sudo apt-get install nodejs
2、安裝nginx
現在使用apt get安裝nginx 網頁伺服器。 nginx在預設儲存庫下可用。
$ sudo apt-get install nginx
3、建立測試node伺服器
現在建立一個測試node伺服器應用程序,並在主機127.0.0.1的連接埠3000上運行它。要建立node伺服器,請建立檔案~/myapp/myapp.js。
$ cd ~/MyApp/ $ vi myapp.js
並在javascript檔案中加入以下內容。
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello Worldn'); }).listen(3000, "127.0.0.1"); console.log('Server running at http://127.0.0.1:3000/');
現在使用以下命令在背景啟動nodejs
$ node myapp.js &
在瀏覽器中存取。
輸出:Hello Word
4、設定NGNIX
使用node.js啟動示範伺服器後,現在開始使用Nginx進行設定。在/etc/nginx/conf.d/目錄下為網域建立虛擬主機設定檔。
$ sudo vim /etc/nginx/conf.d/example.com.conf
並新增以下內容。
upstream myapp { server 127.0.0.1:3000; keepalive 8; } # the nginx server instance server { listen 0.0.0.0:80; server_name example.com www.example.com; access_log /var/log/nginx/example.com.log; location / { 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_pass http://myapp/; proxy_redirect off; } }
完成所有設定後,讓我們使用以下命令重新啟動nginx Web伺服器。
$ sudo /etc/init.d/nginx restart
5、驗證安裝程式
現在使用網域存取你的伺服器,你會在http://127.0.0.1:3000/上看到相同的頁面。
輸出為Hello Word
這篇文章到這裡就已經全部結束了,更多其他精彩內容可以關注PHP中文網的node.js影片教學專欄! ! !
以上是如何將Nginx設定為Node.js的前端伺服器的詳細內容。更多資訊請關注PHP中文網其他相關文章!