pathfinder-containers/static/pathfinder/environment.ini

62 lines
2.3 KiB
INI
Raw Normal View History

2020-08-30 19:59:19 +12:00
; Environment Config
[ENVIRONMENT]
; project environment (DEVELOP || PRODUCTION).
; This effects: DB connection, Mail-Server, SSO, ESI configurations in this file
; configuration below
SERVER = PRODUCTION
[ENVIRONMENT.PRODUCTION]
; path to index.php (Default: leave blank == "auto-detect")
; -> e.g. set /pathfinder if your URL looks like https://www.[YOUR_DOMAIN]/pathfinder (subfolder)
BASE =
; deployment URL (e.g. https://www.pathfinder-w.space)
URL = {{@SCHEME}}://$DOMAIN
; level of debug/error stack trace
2024-04-25 13:07:39 +12:00
DEBUG = 3
2020-08-30 19:59:19 +12:00
; Pathfinder database
2022-08-02 00:36:56 -04:00
DB_PF_DNS = mysql:host=${MYSQL_HOST};port=${MYSQL_PORT};dbname=
DB_PF_NAME = $MYSQL_PF_DB_NAME
DB_PF_USER = $MYSQL_USER
2021-09-05 19:05:14 +12:00
DB_PF_PASS = $MYSQL_PASSWORD
2020-08-30 19:59:19 +12:00
2022-08-02 00:36:56 -04:00
; Universe data (New Eden) cache DB for ESI API response
DB_UNIVERSE_DNS = mysql:host=${MYSQL_HOST};port=${MYSQL_PORT};dbname=
DB_UNIVERSE_NAME = $MYSQL_UNIVERSE_DB_NAME
DB_UNIVERSE_USER = $MYSQL_USER
2020-08-30 19:59:19 +12:00
DB_UNIVERSE_PASS = $MYSQL_PASSWORD
; EVE-Online CCP Database export
DB_CCP_DNS = mysql:host=${MYSQL_HOST};port=${MYSQL_PORT};dbname=
2022-08-02 00:36:56 -04:00
DB_CCP_NAME = $MYSQL_CCP_DB_NAME
DB_CCP_USER = $MYSQL_USER
DB_CCP_PASS = $MYSQL_PASSWORD
2020-08-30 19:59:19 +12:00
; CCP SSO
CCP_SSO_URL = https://login.eveonline.com
2021-09-05 19:05:14 +12:00
CCP_SSO_CLIENT_ID = $CCP_SSO_CLIENT_ID
CCP_SSO_SECRET_KEY = $CCP_SSO_SECRET_KEY
CCP_SSO_JWK_CLAIM = login.eveonline.com
2020-08-30 19:59:19 +12:00
CCP_SSO_DOWNTIME = 11:00
; CCP ESI API
CCP_ESI_URL = https://esi.evetech.net
CCP_ESI_DATASOURCE = tranquility
2022-08-02 00:36:56 -04:00
CCP_ESI_SCOPES = $CCP_ESI_SCOPES
2020-08-30 19:59:19 +12:00
CCP_ESI_SCOPES_ADMIN =
; SMTP settings (optional)
2022-08-02 00:36:56 -04:00
SMTP_HOST = $SMTP_HOST
SMTP_PORT = $SMTP_PORT
SMTP_SCHEME = $SMTP_SCHEME
SMTP_USER = $SMTP_USER
SMTP_PASS = $SMTP_PASS
2020-08-30 19:59:19 +12:00
2022-08-02 00:36:56 -04:00
SMTP_FROM = $SMTP_FROM
SMTP_ERROR = $SMTP_EMAIL
2020-08-30 19:59:19 +12:00
; TCP Socket configuration (optional) (advanced)
2022-08-02 00:36:56 -04:00
SOCKET_HOST = $PATHFINDER_SOCKET_HOST
SOCKET_PORT = $PATHFINDER_SOCKET_PORT