26 lines
666 B
Bash
26 lines
666 B
Bash
### Photon Environment Variables
|
|
PHOTON_PORT=8090
|
|
USER_EMAIL=photon@jrdn.dev
|
|
DATA_PATH=./data
|
|
|
|
### Domain Options
|
|
PHOTON_DOMAIN=photon.local
|
|
|
|
# Uncomment the below lines if you are using a custom subdomain for link sharing.
|
|
# PHOTON_SHARE_DOMAIN=share.photon.local
|
|
# COOKIE_DOMAIN=.photon.local
|
|
|
|
### Basic Auth Credentials (for Traefik) Use htpasswd to generate the password hash.
|
|
BASIC_AUTH_USER=admin
|
|
BASIC_AUTH_PASSWORD='$apr1$LbKLWjeg$i69pFbEbwQ61CtsjWGq/D0'
|
|
|
|
### Photon Worker Environment Variables
|
|
SCAN_RATE=10
|
|
|
|
### Database Environment Variables
|
|
MYSQL_HOST=db
|
|
MYSQL_DATABASE=photon
|
|
MYSQL_USER=photon
|
|
MYSQL_PASSWORD=changeme
|
|
MYSQL_ROOT_PASSWORD=pleasechangeme
|