62 lines
2.6 KiB
Bash
62 lines
2.6 KiB
Bash
################
|
|
### DEFAULT ###
|
|
################
|
|
## What kind of environment. Only use prod here.
|
|
APP_ENV=prod
|
|
|
|
################
|
|
### DATABASE ###
|
|
################
|
|
## We're using a database. Look at the url below to create a database URL
|
|
## https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
|
|
DATABASE_URL="sqlite:///:memory:"
|
|
|
|
##################
|
|
### ENCRYPTION ###
|
|
##################
|
|
## WARNING: Consider your already saved secrets lost when changing below values
|
|
|
|
## This secret value is used to encrypt secret variables (eg. ssh-keys, http-auth passwords, etc)
|
|
APP_SECRET="7-!)U`R\H31LBEI2wu7iWNY,f!Y\$P&VO)%r1`FQ"
|
|
|
|
## The encryption method used for encrypting secret variables. AES-256 is most commonly used and considered most safe.
|
|
## Please see https://www.php.net/openssl-get-cipher-methods for possible values
|
|
ENCRYPTION_METHOD="AES-256-CBC"
|
|
|
|
## Hashing methods algorithms to save passwords.
|
|
## By saving a hash instead of plain-text password your password is kept safe as hashing is considered to be inreversable
|
|
## Additionally when saving a secret variable, a hash of the secret value is calculated as well to ensure
|
|
## the encrypted data is not tampered
|
|
HASHING_METHOD="sha256"
|
|
|
|
###################
|
|
### ENVIRONMENT ###
|
|
###################
|
|
## Debug mode is solely for development purposes only. It disables caching and enables your webcam to stream it to the web
|
|
DEBUG=false
|
|
|
|
## Cookies are used for saving autologin credentials. This sets the amount of time in seconds the credentials are saved.
|
|
## Grandma probably has a calculator somewhere if you need to check how many seconds are in a week :)
|
|
COOKIE_LIFETIME=2592000
|
|
|
|
## Unfortunatly, not everyone has the same timezone. 3:00PM in Sydney, does not mean it is 15:00 in Brussels.
|
|
## You can change this here. Need help? https://www.php.net/timezones
|
|
TZ=Europe/Brussels
|
|
|
|
## TRUSTED_PROXIES is a useful variable when using Docker and/or a reverse proxy.
|
|
## Set it to the IP address of your proxy. You can set to multiple proxies by comma-separating them
|
|
TRUSTED_PROXIES=192.168.1.100
|
|
|
|
##############
|
|
### MAILER ###
|
|
##############
|
|
|
|
## Webcron management is sending you mails when cronjob are failing. The MAILER_DSN is providing usefull information on
|
|
## the how mails are being sent. Need info? https://symfony.com/doc/current/mailer.html#transport-setup
|
|
MAILER_DSN=smtp://morphy.jeroened.be:25
|
|
|
|
## Anonymous is still someone. So even if this someone is unknown you need someone who is sending your mails.
|
|
MAILER_FROM=webcron@jeroened.be
|
|
|
|
## Now that everything is set up: go to your friends and get wasted!
|