这篇“ubuntu下nginx服务器如何配置”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“ubuntu下nginx服务器如何配置”文章吧。
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服务器如何配置”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。