当前位置:   article > 正文

Nginx UI_ui包更新了 nginx需要重启吗

ui包更新了 nginx需要重启吗

不足

     Nginx UI 项目只能界面更改配置,但是需要重启Nginx 才会生效。

     建议增加界面化启动方式。

     Docker 化启动暴露端口也是个问题,只能用host模式。

用户界面

Nginx 用户界面的图像

    

Docker 部署

  • -d 在后台作为守护进程运行
  • --restart=always 在崩溃或服务器重新启动时重新启动
  • --name nginxui 给容器起个名字
  • -v /etc/nginx:/etc/nginx 将 hosts nginx 目录映射到容器中
  • -p 8080:8080 将主机端口 8080 映射到 docker 容器端口 8080

docker run -d --restart=always --name nginxui -v /etc/nginx:/etc/nginx -p 8080:8080 schenkd/nginx-ui:latest


Docker compose 部署

  1. version: '3'
  2. services:
  3. nginx-ui:
  4. container_name: nginx-ui
  5. build: .
  6. image: nginx-ui:latest
  7. ports:
  8. - 8888:8080
  9. volumes:
  10. - nginx:/etc/nginx
  11. nginx:
  12. container_name: nginx
  13. image: nginx:1.18.0-alpine
  14. ports:
  15. - 80:80
  16. volumes:
  17. - nginx:/etc/nginx
  18. volumes:
  19. nginx:

github 地址

     https://github.com/schenkd/nginx-ui

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

闽ICP备14008679号