当前位置:   article > 正文

docker启动nginx,修改index.html文件默认网页返回没有生效_docker修改html不生效

docker修改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;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

没有解决

仔细检查发现

在这里插入图片描述

这里的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:版本号

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/660679
推荐阅读
相关标签
  

闽ICP备14008679号