Nginx发布项目
1.创建一个toutiao目录
cd /home
mkdir toutiao
2.将项目上传到toutiao目录
3.解压项目
unzip web.zip
4.编辑Nginx配置文件nginx-1.17.5/conf/nginx.conf
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /home/toutiao;
index index.html index.htm;
}
5.关闭nginx服务
./nginx -s stop
6.启动服务并加载配置文件
/usr/local/nginx/sbin/nginx -c /home/nginx-1.17.5/conf/nginx.conf
7.浏览器打开网址
http://192.168.203.138:80