24 lines
615 B
Bash
24 lines
615 B
Bash
echo "开始执行 tuohengdev.sh"
|
|
export DOMAIN=develop
|
|
export DOMAIN_END=t-aaron.com
|
|
# 主机对外爆露的HTTP端口
|
|
export NGINX_HTTP_PORT=9999
|
|
# 主机对外爆露的HTTPS端口
|
|
export NGINX_HTTPS_PORT=3443
|
|
export MYSQL_PORT=3309
|
|
export REDIS_PORT=6381
|
|
#MQTT 配置
|
|
# MQTT对外爆露端口
|
|
export MQTT_PORT=1884
|
|
export MQTT_WS_PORT=9004
|
|
export KAFKA_PORT=9292
|
|
# SRS对外爆露端口
|
|
export SRS_RTMP_PORT=1938
|
|
# Minio对外爆露端口
|
|
export MINIO_API_PORT=9700
|
|
# Minio控制台对外爆露端口
|
|
export MINIO_CONSOLE_PORT=9022
|
|
# Consul 配置
|
|
export CONSUL_PORT=8600
|
|
# XXL-Job 配置
|
|
export XXLJOB_PORT=8383 |