2015-01-18 19:44:41 +00:00
|
|
|
# eidolon -- A simple gallery in Haskell and Yesod
|
|
|
|
# Copyright (C) 2015 Amedeo Molnár
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
2015-01-21 09:00:18 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-01-18 19:44:41 +00:00
|
|
|
|
2014-12-23 04:01:53 +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
|
2014-08-09 18:33:22 +00:00
|
|
|
|
2014-12-23 04:01:53 +00:00
|
|
|
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"
|
2014-08-09 18:33:22 +00:00
|
|
|
|
2014-12-23 04:01:53 +00:00
|
|
|
# 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
|
2014-08-09 18:33:22 +00:00
|
|
|
|
2014-12-23 04:01:53 +00:00
|
|
|
database:
|
2015-08-24 14:53:04 +00:00
|
|
|
user: "_env:PGUSER:eidolon"
|
|
|
|
password: "_env:PGPASS:eidolon"
|
|
|
|
host: "_env:PGHOST:localhost"
|
|
|
|
port: "_env:PGPORT:5432"
|
|
|
|
database: "_env:PGDATABASE:eidolon"
|
|
|
|
poolsize: "_env:PGPOOLSIZE:10"
|
2014-08-09 18:33:22 +00:00
|
|
|
|
2016-09-09 15:04:26 +00:00
|
|
|
afferoLink: https://github.com/nek0/eidolon
|
2014-12-23 04:01:53 +00:00
|
|
|
#analytics: UA-YOURCODE
|
|
|
|
|
2016-09-09 15:04:26 +00:00
|
|
|
contactEmail: your@email.here
|
|
|
|
|
2014-12-23 04:01:53 +00:00
|
|
|
# block signup process
|
|
|
|
signupBlocked: "_env:SIGNUP_BLOCK:false"
|
2015-10-17 19:52:23 +00:00
|
|
|
|
|
|
|
# Terms of Service
|
2015-04-04 08:34:19 +00:00
|
|
|
tos1: "Terms of Service 1"
|
|
|
|
tos2: "Terms of Service 2"
|