You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
880 B
Bash
46 lines
880 B
Bash
# 程序运行时使用的目录
|
|
TIMEZONE=Asia/Shanghai
|
|
RUN_DATA_DIR=../data
|
|
SPRING_PROFILES_ACTIVE=prod
|
|
|
|
#NACOS 配置
|
|
NACOS_PORT_HTTP=18498
|
|
|
|
# mysql数据库配置
|
|
MYSQL_PASSWORD=vp@sst0909@mysql
|
|
MYSQL_PORT=13316
|
|
|
|
# redis配置
|
|
REDIS_PASSWORD=vp-sst0909-admin
|
|
REDIS_PORT_HTTP=16399
|
|
|
|
# minio 配置
|
|
MINIO_USER=admin
|
|
MINIO_PASSWORD=vp@sst0909@minio
|
|
MINIO_PORT=19000
|
|
MINIO_CONSOLE_PORT=19001
|
|
|
|
# paddle-speech 配置
|
|
PADDLE_SPEECH_PORT=18090
|
|
|
|
# 智能问答配置
|
|
VP_QA_PORT=8711
|
|
|
|
#nebula 配置
|
|
NEBULA_GRAPH_PORT=9669
|
|
|
|
#nacos端口
|
|
NACOS_NAMESPACE=prod
|
|
|
|
# 后端服务暴露端口
|
|
PATIENT_WEB_PORT=8899
|
|
PATIENT_NACOS_SERVER_IP=virtual-patient-nacos
|
|
MANAGE_WEB_PORT=8891
|
|
GRAPH_WEB_PORT=8892
|
|
|
|
|
|
# nginx 代理配置
|
|
UPSTREAM_WEB_SERVERS=virtual-patient-web:8899
|
|
UPSTREAM_MANAGE_SERVERS=virtual-patient-manage:8891
|
|
UPSTREAM_GRAPH_SERVERS=virtual-patient-graph:8892
|
|
NGINX_HTTPS_PORT=443 |