yammat/config/settings.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

2015-04-04 04:46:33 +00:00
# Values formatted like "_env:ENV_VAR_NAME:default_value" can be overridden by the specified environment variable.
# See https://github.com/yesodweb/yesod/wiki/Configuration#overriding-configuration-values-with-environment-variables
static-dir: "_env:STATIC_DIR:static"
host: "_env:HOST:*4" # any IPv4 host
port: "_env:PORT:3000"
approot: "_env:APPROOT:http://localhost:3000"
ip-from-header: "_env:IP_FROM_HEADER:false"
# Optional values with the following production defaults.
# In development, they default to the inverse.
#
# development: false
# detailed-logging: false
# should-log-all: false
# reload-templates: false
# mutable-static: false
# skip-combining: false
database:
2015-04-06 21:12:58 +00:00
user: "_env:PGUSER:yammat"
password: "_env:PGPASS:yammat"
host: "_env:PGHOST:localhost"
port: "_env:PGPORT:5432"
database: "_env:PGDATABASE:yammat"
poolsize: "_env:PGPOOLSIZE:10"
2015-04-04 04:46:33 +00:00
#analytics: UA-YOURCODE
email:
- "nek0@momen"
2015-04-04 06:18:15 +00:00
currency: "€"
cash_charge: 50
2015-09-17 19:54:04 +00:00
copyright: "Powered by YAMMAT"
copyright_link: "https://github.com/nek0/yammat"
2017-06-03 00:37:22 +00:00
block_users: false
sendmail-location: "/usr/sbin/sendmail"
from-mail: "matemat@matemat.hq.c3d2.de"
2017-06-03 00:39:38 +00:00
# optional administrative credentials.
2017-06-03 00:37:22 +00:00
# credentials:
# login: "admin"
# password: "password"