首页 > 运维 > nginx > 正文

ubuntu下的nginx服务器配置实例分析

王林
发布: 2023-05-22 08:16:38
转载
985 人浏览过

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学习者快速成长!