Fetch the repository succeeded.
依赖 | 版本 |
---|---|
Spring Boot | 2.3.1.RELEASE |
Spring Cloud | Hoxton.SR5 |
Mybatis Plus | 3.3.2 |
Ant Design Vue | 1.5.6 |
cjlgb-cloud-platform
├── cjlgb-design-common
├── cjlgb-design-common-core -- 公共工具类核心包
├── cjlgb-design-common-mybatis -- 整合MybatisPlus
├── cjlgb-design-common-oauth -- Oauth认证模块接口
├── cjlgb-design-common-security -- 分布式权限框架
├── cjlgb-design-common-system -- 系统服务模块接口
├── cjlgb-design-gateway -- API网关[10001]
└── cjlgb-design-developer -- 开发者服务模块[0]
└── cjlgb-design-oauth -- Oauth服务模块[0]
└── cjlgb-design-system -- 系统服务模块[0]
欢迎提交 pull request,注意对应提交对应 dev
分支
欢迎提交 issue,请写清楚遇到问题的原因、开发环境、复显步骤。
不接受功能请求
的 issue,功能请求可能会被直接关闭。
QQ: 2055305009
127.0.0.1 cjlgb-design-gateway
127.0.0.1 cjlgb-design-nacos
127.0.0.1 cjlgb-design-redis
127.0.0.1 cjlgb-design-mysql
version: "3"
networks:
default:
external:
name: cjlgb-cloud-platform
services:
cjlgb-design-nacos:
image: nacos/nacos-server:1.1.4
container_name: cjlgb-design-nacos
environment:
- PREFER_HOST_MODE=hostname
- MODE=standalone
restart: on-failure
version: '3'
networks:
default:
external:
name: cjlgb-cloud-platform
services:
cjlgb-design-redis:
restart: always
image: redis
hostname: cjlgb-design-redis
container_name: cjlgb-design-redis
version: '3'
networks:
default:
external:
name: cjlgb-cloud-platform
services:
cjlgb-design-nginx:
container_name: cjlgb-design-nginx
image: nginx
volumes:
- /opt/apps/docker-container/cjlgb-design-nginx/conf/nginx.conf:/etc/nginx/nginx.conf
- /opt/apps/docker-container/cjlgb-design-nginx/website:/usr/share/nginx/html
ports:
- 80:80
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
access_log off;
gzip on;
server {
listen 80;
server_name nacos.cjlgb.com;
location / {
proxy_pass http://cjlgb-design-nacos:8848/nacos/;
}
}
server {
listen 80;
server_name admin.cjlgb.com;
location /apis/ {
proxy_pass http://cjlgb-design-gateway:10001/;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
}
Sign in for post a comment
Activity
Community
Health
Trend
Influence
:Code submit frequency
:React/respond to issue & PR etc.
:Well-balanced team members and collaboration
:Recent popularity of project
:Star counts, download counts etc.
Comments ( 38 )