nginx设置默认首页


nginx设置默认首页

nginx不仅可以做反向代理,而且还能做web server。

打开配置文件,设置自己主页的路径,和主页名称。
cd /usr/local/nginx/conf
vi nginx.conf
# 配置nginx
listen 8080;
location / {
index myhome.html;
root root/home;
}

重新启动一下,这样子我们的配置才可以生效。

# 启动nginx
cd usr/local/nginx/sbin
./nginx

# 重启nginx
cd /usr/local/nginx/sbin
./nginx -s reload

# 解决权限问题
chmod -R 755 /root/home


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM