diff --git a/img/nginx-conf.png b/img/nginx-conf.png new file mode 100644 index 0000000..a2993a5 Binary files /dev/null and b/img/nginx-conf.png differ diff --git a/img/nginx-home.png b/img/nginx-home.png new file mode 100644 index 0000000..f1fd59f Binary files /dev/null and b/img/nginx-home.png differ diff --git a/img/nginx-lisner.png b/img/nginx-lisner.png new file mode 100644 index 0000000..e0bd6da Binary files /dev/null and b/img/nginx-lisner.png differ diff --git a/img/nginx-location.png b/img/nginx-location.png new file mode 100644 index 0000000..4d7d8ab Binary files /dev/null and b/img/nginx-location.png differ diff --git a/img/nginx-login.png b/img/nginx-login.png new file mode 100644 index 0000000..dbb695b Binary files /dev/null and b/img/nginx-login.png differ diff --git a/img/nginx-upstream.png b/img/nginx-upstream.png new file mode 100644 index 0000000..bb477b8 Binary files /dev/null and b/img/nginx-upstream.png differ diff --git "a/ops/Nginx\351\205\215\347\275\256\345\217\257\350\247\206\345\214\226\347\256\241\347\220\206.md" "b/ops/Nginx\351\205\215\347\275\256\345\217\257\350\247\206\345\214\226\347\256\241\347\220\206.md" new file mode 100644 index 0000000..d8167fe --- /dev/null +++ "b/ops/Nginx\351\205\215\347\275\256\345\217\257\350\247\206\345\214\226\347\256\241\347\220\206.md" @@ -0,0 +1,54 @@ +## Nginx 配置可视化UI展示 + +![Login](../img/nginx-login.png) + +![Home](../img/nginx-home.png) + +![Upstream](../img/nginx-upstream.png) + +![listen](../img/nginx-lisner.png) + +![Location](../img/nginx-location.png) + +![Conf](../img/nginx-conf.png) + +## 功能 + +- Nginx 可视化管理 +- Nginx 配置管理 +- Nginx 性能监控 + +## 部署 + +### 快速部署 + +```bash +docker run --detach \ +--publish 80:80 --publish 8889:8889 \ +--name nginx_ui \ +--restart always \ +crazyleojay/nginx_ui:latest +``` + +### 数据持久化部署 + +`配置文件路径`:/usr/local/nginx/conf/nginx.conf + +```bash +docker run --detach \ +--publish 80:80 --publish 8889:8889 \ +--name nginx_ui \ +--restart always \ +--volume /home/nginx.conf:/usr/local/nginx/conf/nginx.conf \ +crazyleojay/nginx_ui:latest +``` + +> 项目地址:https://github.com/onlyGuo/nginx-gui + +## 小结 + +该项目适用于`测试环境`或者`本地开发环境`不适合`生产环境`,提供给不懂Nginx配置人员使用,通过Web界面能简单的配置。 + +## 参考链接 + +- https://github.com/onlyGuo/nginx-gui \ No newline at end of file