Files
isaaccladandCursor 3ca402fa25
Deploy Ladill Hosting / deploy (push) Successful in 1m35s
Throttle platform SSO session checks to cut per-request auth latency.
Verify auth.ladill.com at most once every 90s; recommend Redis for session/cache in .env.example.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-30 16:51:43 +00:00

90 lines
1.9 KiB
Bash

APP_NAME="Ladill Hosting"
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=https://hosting.ladill.com
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
PLATFORM_URL=https://ladill.com
PLATFORM_DOMAIN=ladill.com
AUTH_DOMAIN=auth.ladill.com
ACCOUNT_DOMAIN=account.ladill.com
HOSTING_DOMAIN=hosting.ladill.com
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=warning
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=ladill_hosting
DB_USERNAME=ladill_hosting
DB_PASSWORD=
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
SESSION_DRIVER=redis
# Idle web session length in minutes (1440 = 24 hours of inactivity).
SESSION_LIFETIME=1440
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=.ladill.com
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
CACHE_STORE=redis
LADILL_SSO_CLIENT_ID=
LADILL_SSO_CLIENT_SECRET=
BILLING_API_URL=https://ladill.com/api/billing
BILLING_API_KEY_HOSTING=
IDENTITY_API_URL=https://ladill.com/api
IDENTITY_API_KEY_HOSTING=
# Platform admin API (account.ladill.com → hosting.ladill.com)
PLATFORM_API_KEY_HOSTING=
# Ladill Domains API (owned-domain picker; domains.ladill.com)
DOMAINS_API_URL=https://domains.ladill.com/api
DOMAINS_API_KEY_HOSTING=
DOMAIN_REGISTRY_API_URL=https://ladill.com/api
DOMAIN_API_URL=https://ladill.com/api/domains
DOMAIN_API_KEY_HOSTING=
LADILL_HOSTING_API_URL=https://httpapi.com/api
LADILL_HOSTING_DEFAULT_PLAN_ID=
HOSTING_PHPMYADMIN_URL=
HOSTING_PHPMYADMIN_SSO_SECRET=
CONTABO_CLIENT_ID=
CONTABO_CLIENT_SECRET=
CONTABO_API_USER=
CONTABO_API_PASSWORD=
CONTABO_PRODUCT_CATALOG_ENDPOINT=
CONTABO_PRICE_CACHE_TTL=3600
PDNS_API_URL=
PDNS_API_KEY=
LADILL_RESELLERCLUB_TLD_PRODUCT_KEYS=com=domcno,net=domnet,org=domorg
LADILL_RESELLERCLUB_CONTROL_PANEL_URL=https://manage.resellerclub.com/customer
AFIA_API_KEY=
AFIA_PROVIDER=openai
AFIA_MODEL=gpt-4o-mini
VITE_APP_NAME="${APP_NAME}"