nginx

前言

前言用>符号标注🖊

我的阿里云服务器已经装好了nginx,路径放在了 /www/server/nginx

nginx的配置文件为/nginx/conf/nginx.conf

less /conf/nginx.conf

发现最后一行:

1
include /www/server/panel/vhost/nginx/*.conf;

意思是:从该路径下名为xxx.conf的文件会扩展配置到本文件中,所以我在/www/server/panel/vhost/nginx/下创建一个test.conf,该目录可能需要管理员权限,因此sudo编辑:

1
2
3
4
5
6
7
8
9
10
11
12
upstream stormaaron.top {
server localhost:8897;
server localhost:8099;
}
server {
listen 8100;
server_name stormaaron.top;

location /comeon1/ {
proxy_pass http://stormaaron.top;
}
}

本文标题:nginx

文章作者:Aaron.H

发布时间:2018年09月30日 - 17:09

最后更新:2018年09月30日 - 21:09

原始链接:https://uncleaaron.github.io/Blog/分布式distribute/nginx/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。