关住 公 纵 号 “ 阿蒙课程分享 ” 获得学习资料及趣味分享
修改 nginx配置
1.cd /etc/nginx/conf.d
2.vi default.conf 编辑配置文件
default.conf 的内容一般 大致为:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /www/web/; 注:-----------放代码的文件夹目录
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
3.:wq 报存 退出
4.重启nginx服务----修改完,要重启才生效
/etc/init.d/nginx restart