您好,登錄后才能下訂單哦!
這篇文章主要介紹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 web服務器。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
以上是“Nginx怎么設置為Node.js的前端服務器方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。