mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-28 09:14:44 +02:00

* remove old settings stuff * add basic settings page * add some settings * add "test mail" button * fix mail fields not updating * fix phpstan * fix default for "top navigation" * force toggle buttons to be bool * force toggle to be bool * add class to view to allow customization * add mailgun settings * add notification settings * add timeout settings * organize tabs into sub-functions * add more settings * add backup settings * add sections to mail settings * add setting for trusted_proxies * fix unsaved data alert not showing * fix clear action * Fix clear action v2 TagsInput expects an array, not a string, fails on saving when using `''` * Add App favicon * Remove defaults, collapse misc sections * Move Save btn, Add API rate limit * small cleanup --------- Co-authored-by: notCharles <charles@pelican.dev>
37 lines
850 B
Plaintext
37 lines
850 B
Plaintext
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_KEY=
|
|
APP_TIMEZONE=UTC
|
|
APP_URL=http://panel.test
|
|
APP_LOCALE=en
|
|
|
|
LOG_CHANNEL=daily
|
|
LOG_STACK=single
|
|
LOG_DEPRECATIONS_CHANNEL=null
|
|
LOG_LEVEL=debug
|
|
|
|
DB_CONNECTION=sqlite
|
|
|
|
CACHE_STORE=file
|
|
QUEUE_CONNECTION=database
|
|
SESSION_DRIVER=file
|
|
|
|
MAIL_MAILER=log
|
|
MAIL_HOST=smtp.example.com
|
|
MAIL_PORT=25
|
|
MAIL_USERNAME=
|
|
MAIL_PASSWORD=
|
|
MAIL_ENCRYPTION=tls
|
|
MAIL_FROM_ADDRESS=no-reply@example.com
|
|
MAIL_FROM_NAME="Pelican Admin"
|
|
# Set this to your domain to prevent it defaulting to 'localhost', causing mail servers such as Gmail to reject your mail
|
|
# MAIL_EHLO_DOMAIN=panel.example.com
|
|
SESSION_ENCRYPT=false
|
|
SESSION_PATH=/
|
|
SESSION_DOMAIN=null
|
|
|
|
# Set this to true, and set start & end ports to auto create allocations.
|
|
PANEL_CLIENT_ALLOCATIONS_ENABLED=false
|
|
PANEL_CLIENT_ALLOCATIONS_RANGE_START=
|
|
PANEL_CLIENT_ALLOCATIONS_RANGE_END=
|