首頁 > 運維 > Nginx > 主體

ubuntu下nginx伺服器如何配置

王林
發布: 2023-05-15 09:04:05
轉載
2207 人瀏覽過

ubuntu 下的nginx伺服器設定詳解

1.nginx伺服器的安裝

sudo apt-get install nginx

#2.nginx伺服器的啟動

sudo /etc/init.d/nginx start

#3.多網域對應不同的後台伺服器

在/etc/nginx/sites- enabled/ 目錄中刪除default設定檔

新建網域對應的設定檔

例如test.youlunshidai.com

#通过upstream nodejs__upstream 可以配置多台nodejs节点,做负载均衡
upstream nodejs__upstream__test__youlunshidai {
 server 127.0.0.1:8089; #服务器地址和端口号
 #server 127.0.0.1:8088; #负载均衡服务器地址和端口号
 keepalive 64; #设置存活时间。如果不设置可能会产生大量的timewait
}
server {
 listen 80;
 server_name test.youlunshidai.com;
 access_log /var/log/nginx/test_youlunshidai.log; #nginx日志文件
 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_set_header connection "";
 proxy_http_version 1.1; 
 proxy_pass http://nodejs__upstream__test__youlunshidai; #反向代理转发 http://nodejs__upstream;
 }
}
登入後複製

如果還有其他域名和後台伺服器,在目錄下繼續新建對應的網域設定檔即可

ubuntu下nginx伺服器如何配置

#

以上是ubuntu下nginx伺服器如何配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!