完善权限系统

This commit is contained in:
BBIT-Kai
2025-12-08 18:11:48 +08:00
parent c53926afd6
commit dbdc222541
1503 changed files with 132197 additions and 885 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM nginx:1.27.4-alpine
# 配置 nginx
RUN echo "types { application/javascript js mjs; }" > /etc/nginx/conf.d/mjs.conf \
&& rm -rf /etc/nginx/conf.d/default.conf
# 只拷贝打包好的 dist
COPY apps/web-antd/dist /usr/share/nginx/html
# 拷贝 nginx 配置
COPY scripts/deploy/nginx.conf /etc/nginx/nginx.conf
#EXPOSE 8091 因为使用kong做网关 可以直接使用ce-vue:8091访问 所以这里可以不暴露给内网
CMD ["nginx", "-g", "daemon off;"]