docker启动nginx,修改index.html文件默认网页返回没有生效
先跟着网上的方法做
# 进入目录
[root@kubesphere_1 html]# docker exec -it mynginx /bin/bash
root@c57f1c95ab1b:/etc/nginx# vi nginx.conf
# 先下载编辑工具
root@c57f1c95ab1b:/etc/nginx# apt-get update
root@c57f1c95ab1b:/etc/nginx# apt-get install vim
# 增加下面 —— 没有解决
http{
sendfile off;
}
没有解决
仔细检查发现
这里的usr 拼成了user导致的
附上docker启动nginx容器命令
docker run -d --restart=always -p 80:80 \
-v /data/html:/usr/share/nginx/html:rw \
-v /data/conf/nginx.conf:/etc/nginx/nginx.conf \
--name=mynginx \
nginx:版本号
原文地址:https://blog.csdn.net/ganjiee0007/article/details/136347305
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!