- added/improved "/online" status check to deleteLogData() cronjob, closed #495 - added/improved "/online" status check to $characterModel->updateLog(), closed #495
98 lines
3.7 KiB
INI
98 lines
3.7 KiB
INI
; Environment Config
|
|
|
|
[ENVIRONMENT]
|
|
; project environment (DEVELOP || PRODUCTION).
|
|
; This effects: DB connection, Mail-Server, SSO, CREST 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 = http://local.pathfinder
|
|
; level of debug/error stack trace
|
|
DEBUG = 3
|
|
; main db
|
|
DB_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_NAME = pathfinder
|
|
DB_USER = root
|
|
DB_PASS =
|
|
|
|
; EVE-Online CCP Database export
|
|
DB_CCP_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_CCP_NAME = eve_citadel_min
|
|
DB_CCP_USER = root
|
|
DB_CCP_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 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
|
|
CCP_ESI_SCOPES_ADMIN = esi-corporations.read_corporation_membership.v1
|
|
|
|
; 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 = https://www.pathfinder-w.space
|
|
; level of debug/error stack trace
|
|
DEBUG = 0
|
|
; main db
|
|
DB_DNS = mysql:host=localhost;port=3306;dbname=
|
|
DB_NAME =
|
|
DB_USER =
|
|
DB_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 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
|
|
CCP_ESI_SCOPES_ADMIN = esi-corporations.read_corporation_membership.v1
|
|
|
|
; 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 |