mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 02:54:45 +02:00

* update web installer * make sure we have a user * save SESSION_SECURE_COOKIE as text so it's written correctly to the .env * set `SESSION_COOKIE` so session doesn't expire when changing the app name * Allow enter to go to next step --------- Co-authored-by: notCharles <charles@pelican.dev>
35 lines
714 B
Plaintext
35 lines
714 B
Plaintext
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_KEY=
|
|
APP_TIMEZONE=UTC
|
|
APP_URL=http://panel.test
|
|
APP_LOCALE=en
|
|
APP_INSTALLED=false
|
|
|
|
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
|
|
SESSION_COOKIE=pelican_session
|