auto-deploy-demo/.env.example

23 lines
587 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 服务端口
PORT=8888
# 基础域名部署到服务器时配置本地开发留空使用localhost
# 示例BASE_DOMAIN=demo.example.com
BASE_DOMAIN=
# 项目端口范围
PROJECT_PORT_START=9000
PROJECT_PORT_END=9100
# 项目服务绑定地址
# 127.0.0.1 - 仅本地访问Nginx代理模式
# 0.0.0.0 - 允许外部访问Docker模式
PROJECT_BIND_ADDRESS=127.0.0.1
# Nginx配置动态路由模式
USE_NGINX=auto
NGINX_CONFIG_DIR=./nginx/sites-enabled
NGINX_TEMPLATE_PATH=./server/templates/nginx
NGINX_RELOAD_CMD=nginx -s reload
NGINX_TEST_CMD=nginx -t