34 lines
1.0 KiB
Bash
34 lines
1.0 KiB
Bash
# Minimal bootstrap env.
|
|
# Most product settings are configured later in Web App admin:
|
|
# Admin -> System -> Settings, Admin -> System -> Tariffs, Admin -> Appearance.
|
|
# Full reference: docs/env-vars.md
|
|
|
|
# Required before first start
|
|
BOT_TOKEN=your_bot_token_here
|
|
ADMIN_IDS=123456789
|
|
WEBHOOK_BASE_URL=https://webhooks.yourdomain.tld
|
|
|
|
# PostgreSQL used by Docker Compose and backend
|
|
POSTGRES_USER=remnawave_minishop
|
|
POSTGRES_PASSWORD=change_me
|
|
POSTGRES_DB=remnawave_minishop
|
|
|
|
# Strongly recommended stable secrets.
|
|
# Generate with: openssl rand -hex 32
|
|
WEBAPP_SESSION_SECRET=
|
|
WEBHOOK_SECRET_TOKEN=
|
|
|
|
# Recommended baseline values.
|
|
# Remnawave access stays in .env, but can be overridden from the Web App admin.
|
|
SUBSCRIPTION_MINI_APP_URL=https://app.yourdomain.tld/
|
|
PANEL_API_URL=https://panel.yourdomain.tld/api
|
|
PANEL_API_KEY=
|
|
PANEL_WEBHOOK_SECRET=
|
|
|
|
# Optional host ports for local Compose publication.
|
|
WEB_SERVER_PORT=8080
|
|
FRONTEND_PORT=8082
|
|
|
|
# Optional reverse proxy trust list for X-Forwarded-For.
|
|
TRUSTED_PROXIES=127.0.0.1,::1
|