linux/centos+nginx添加网站
1、新建网站目录并上传程序
2、添加新网站的配置文件
/usr/local/nginx/conf/vhost/domain2.conf
3、在nginx.conf中添加对新网站配置文件的调用:
include vhost/domain2.conf;
或者自动加载所有网站的配置:
include vhost/*.conf;
4、重启nginx
在nginx/sbin目录执行 ./nginx -s reload
参考:
Nginx的启动、停止与重启 https://www.cnblogs.com/codingcloud/p/5095066.html
xshell常用命令大全 https://www.cnblogs.com/qq350760546/p/7890680.html
nginx新建网站 https://bbs.aliyun.com/read/3189.html
nginx新建网站 https://www.cnblogs.com/eco-just/p/8964108.html