ninebadge/tmpl/ninebadge-env.local

91 lines
2.0 KiB
Plaintext
Executable File

# SYMFONY
APP_ENV=PROD
%set keyfile = %%getVar('container_path_web','') + '/var/www/html/ninebadge/.key'
APP_SECRET=%%pwdreader("",%%keyfile)
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#TRUSTED_HOSTS='^(localhost|example\.com)$'
# BASIC
APP_WEBURL=%%web_url
APP_AUTH=CAS
APP_ALIAS=ninebadge
APP_NAME=Ninebadge
APP_CRON=1
# Scheudle
SCHEDULE_URL=%%ninebadge_schedule_url
SCHEDULE_KEY=%%ninebadge_schedule_key
# BDD
DATABASE_NAME=ninebadge
DATABASE_USER=ninebadge
DATABASE_PASSWORD=tochange
%if %%getVar("ninebadge_db_mode", 'non') == "externe"
DATABASE_HOST=%%ninebadge_dbserver
%else if %%getVar("ninebadge_db_mode", 'non') == "default"
%set dbhost = %%getVar('edb_host', 'non')
%if %%dbhost == 'non' and %%mode_conteneur_actif == 'oui':
DATABASE_HOST=%%adresse_ip_mysql
%else
%if %%dbhost == 'non'
DATABASE_HOST=localhost
%else
DATABASE_HOST=localhost
%end if
%end if
%else
DATABASE_HOST=%%adresse_ip_mysql
%end if
# MAIL sendmail / smtp
%if %%getVar("ninebadge_activer_localmail", "oui") == "oui"
MAILER_METHOD=sendmail
MAILER_URL=
%else
MAILER_METHOD=smtp
MAILER_URL=smtp://%%ninebadge_smtphost:%%ninebadge_smtpport?encryption=%%ninebadge_smtpencryption&auth_mode=%%ninebadge_smtpauthmode&username=%%ninebadge_smtpuser&password=%%ninebadge_smtppwd
%end if
MAILER_NOREPLY=noreply@noreply.fr
# CAS
CAS_HOST=%%eolesso_adresse
CAS_PORT=%%eolesso_port
CAS_PATH=%%eolesso_cas_folder
CAS_USERNAME=username
CAS_EMAIL=email
CAS_LASTNAME=lastname
CAS_FIRSTNAME=firstname
# Proxy
%if %%activer_proxy_client == 'oui'
PROXY_USE=1
PROXY_HOST=%%proxy_client_adresse
PROXY_PORT=%%proxy_client_port
%else
PROXY_USE=0
PROXY_HOST=
PROXY_PORT=
%end if
# Sonde statistic
%if %%getVar("activer_sondepiwik_local", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/sondepiwik/envoleTrackeur.js.php
%else if %%getVar("activer_piwik", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/piwik/envoleTrackeur.js.php
%else if %%getVar("activer_sondednma", 'non') == "oui"
SONDE_USE=1
SONDE_URL=/sondepiwik/envoleTrackeur.js.php
%else
SONDE_USE=0
SONDE_URL=
%end if