18 lines
438 B
Bash
18 lines
438 B
Bash
# App
|
|
APP_PORT=8080
|
|
APP_SECRET=change-me-to-a-long-random-secret-key
|
|
APP_ENV=production
|
|
|
|
# Admin authorization
|
|
ADMIN_EMAIL=admin@panel.local
|
|
ADMIN_PASSWORD=Admin123!ChangeMe
|
|
ADMIN_NAME=Administrator
|
|
|
|
# PostgreSQL 17
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=vpn_panel
|
|
POSTGRES_USER=vpn_admin
|
|
POSTGRES_PASSWORD=VpnDb_Secure_Pass_17
|
|
DATABASE_URL=postgres://vpn_admin:VpnDb_Secure_Pass_17@postgres:5432/vpn_panel?sslmode=disable
|