106 lines
4.1 KiB
INI
106 lines
4.1 KiB
INI
; Environment Config
|
|
|
|
[ENVIRONMENT]
|
|
; project environment (DEVELOP || PRODUCTION).
|
|
; This effects: DB connection, Mail-Server, SSO, ESI configurations in this file
|
|
; configuration below
|
|
SERVER = DEVELOP
|
|
|
|
[ENVIRONMENT.DEVELOP]
|
|
; 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. http://localhost)
|
|
URL = {{@SCHEME}}://local.pathfinder
|
|
; level of debug/error stack trace
|
|
DEBUG = 3
|
|
; Pathfinder database
|
|
DB_PF_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_PF_NAME = pathfinder
|
|
DB_PF_USER = root
|
|
DB_PF_PASS =
|
|
|
|
; Universe data (New Eden) cache DB for ESI API respons
|
|
DB_UNIVERSE_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_UNIVERSE_NAME = eve_universe
|
|
DB_UNIVERSE_USER = root
|
|
DB_UNIVERSE_PASS =
|
|
|
|
; CCP SSO (OAuth2) - visit: https://developers.eveonline.com/applications
|
|
CCP_SSO_URL = https://sisilogin.testeveonline.com
|
|
CCP_SSO_CLIENT_ID =
|
|
CCP_SSO_SECRET_KEY =
|
|
CCP_SSO_DOWNTIME = 11:00
|
|
|
|
; CCP ESI API
|
|
CCP_ESI_URL = https://esi.tech.ccp.is
|
|
CCP_ESI_DATASOURCE = singularity
|
|
CCP_ESI_SCOPES = esi-location.read_online.v1,esi-location.read_location.v1,esi-location.read_ship_type.v1,esi-ui.write_waypoint.v1,esi-ui.open_window.v1,esi-universe.read_structures.v1,esi-corporations.read_corporation_membership.v1
|
|
CCP_ESI_SCOPES_ADMIN =
|
|
|
|
; SMTP settings (optional)
|
|
SMTP_HOST = localhost
|
|
SMTP_PORT = 25
|
|
SMTP_SCHEME = TLS
|
|
SMTP_USER = pathfinder
|
|
SMTP_PASS = root
|
|
|
|
SMTP_FROM = pathfinder@localhost.com
|
|
SMTP_ERROR = pathfinder@localhost.com
|
|
|
|
; TCP Socket configuration (optional) (advanced)
|
|
;SOCKET_HOST = 127.0.0.1
|
|
;SOCKET_PORT = 5555
|
|
|
|
|
|
[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}}://www.pathfinder-w.space
|
|
; level of debug/error stack trace
|
|
DEBUG = 0
|
|
; Pathfinder database
|
|
DB_PF_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_PF_NAME =
|
|
DB_PF_USER =
|
|
DB_PF_PASS =
|
|
|
|
; Universe data (New Eden) cache DB for ESI API respons
|
|
DB_UNIVERSE_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_UNIVERSE_NAME =
|
|
DB_UNIVERSE_USER =
|
|
DB_UNIVERSE_PASS =
|
|
|
|
; EVE-Online CCP Database export
|
|
DB_CCP_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_CCP_NAME =
|
|
DB_CCP_USER =
|
|
DB_CCP_PASS =
|
|
|
|
; CCP SSO
|
|
CCP_SSO_URL = https://login.eveonline.com
|
|
CCP_SSO_CLIENT_ID =
|
|
CCP_SSO_SECRET_KEY =
|
|
CCP_SSO_DOWNTIME = 11:00
|
|
|
|
; CCP ESI API
|
|
CCP_ESI_URL = https://esi.tech.ccp.is
|
|
CCP_ESI_DATASOURCE = tranquility
|
|
CCP_ESI_SCOPES = esi-location.read_online.v1,esi-location.read_location.v1,esi-location.read_ship_type.v1,esi-ui.write_waypoint.v1,esi-ui.open_window.v1,esi-universe.read_structures.v1,esi-corporations.read_corporation_membership.v1
|
|
CCP_ESI_SCOPES_ADMIN =
|
|
|
|
; SMTP settings (optional)
|
|
SMTP_HOST = localhost
|
|
SMTP_PORT = 25
|
|
SMTP_SCHEME = TLS
|
|
SMTP_USER =
|
|
SMTP_PASS =
|
|
|
|
SMTP_FROM = registration@pathfinder-w.space
|
|
SMTP_ERROR = admin@pathfinder-w.space
|
|
|
|
; TCP Socket configuration (optional) (advanced)
|
|
;SOCKET_HOST = 127.0.0.1
|
|
;SOCKET_PORT = 5555 |