欢迎来到 无奈人生 安全网 聚焦网络安全前沿资讯,精华内容,交流技术心得!

ubuntu 下的nginx服务器配置详解

来源: 作者: 时间:2019-02-24 21:37 点击: 我要投稿
广告位API接口通信错误,查看德得广告获取帮助

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服务器配置详解

1.nginx服务器的安装

内容来自无奈安全网

sudo apt-get install nginx

内容来自无奈安全网

2.nginx服务器的启动 copyright 无奈人生

sudo /etc/init.d/nginx start copyright 无奈人生

3.多域名对应不同的后台服务器 本文来自无奈人生安全网

在/etc/nginx/sites-enabled/ 目录中删除default配置文件 内容来自无奈安全网

新建域名对应的配置文件

无奈人生安全网

比如test.youlunshidai.com copyright 无奈人生

#通过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;
 }
} 

内容来自无奈安全网

如果还有其他域名和后台服务器,在目录下继续新建对应的域名配置文件即可 www.wnhack.com

copyright 无奈人生

。 (责任编辑:admin)
【声明】:无奈人生安全网(http://www.wnhack.com)登载此文出于传递更多信息之目的,并不代表本站赞同其观点和对其真实性负责,仅适于网络安全技术爱好者学习研究使用,学习中请遵循国家相关法律法规。如有问题请联系我们,联系邮箱472701013@qq.com,我们会在最短的时间内进行处理。