码迷,mamicode.com
首页 > 其他好文 > 详细

nginx部署前端工程

时间:2018-10-20 14:58:55      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:www   xxx   roo   目录   get   col   target   .so   location   

1.安装nginx后将前端工程放到niginx安装目录的 /nginx/html 文件夹下

2.进入/nginx/conf文件夹下修改nginx.conf配置文件,配置内容如下

server {
    listen 80;
    server_name www.xxx.com;
    
    error_page 500 502 503 504 /50x.html;
    
    location / {
        #frontProject为前端工程文件夹
        root html/frontProject;
        index  login.html login.htm;
        } 
}    

3.进入/nginx/sbin文件夹下,执行./nginx -s reload 让配置生效

 

文末小福利免费视频资源网站:www.sousuohou.com

nginx部署前端工程

标签:www   xxx   roo   目录   get   col   target   .so   location   

原文地址:https://www.cnblogs.com/vicF/p/9821488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!