summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authormarudor <marudor@marudor.de>2018-02-11 20:14:35 +0100
committermsquare <msquare@notrademark.de>2018-08-19 16:44:33 +0200
commitd7ba51b3ecea3d6be6dc80677aa8d92a301109f1 (patch)
treec9c129f90ecf6b009d00a577b170f9d1bae30419 /config/config.default.php
parenta65d92f04e29f4cf278929649ec8bb265bf5aa9c (diff)
more env as variables
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/config.default.php b/config/config.default.php
index c0b00715..bcac506a 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -15,7 +15,7 @@ return [
'api_key' => '',
// Enable maintenance mode (show a static page)
- 'maintenance' => false,
+ 'maintenance' => env('MAINTENANCE', false),
// Set to development to enable debugging messages
'environment' => 'production',
@@ -24,10 +24,10 @@ return [
'faq_url' => 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers',
// Contact email address, linked on every page
- 'contact_email' => 'mailto:ticket@c3heaven.de',
+ 'contact_email' => env('CONTACT_EMAIL', 'mailto:ticket@c3heaven.de'),
// From address of all emails
- 'no_reply_email' => 'noreply@engelsystem.de',
+ 'no_reply_email' => env('NO_REPLY_EMAIL', 'noreply@engelsystem.de'),
// Default theme, 1=style1.css
'theme' => 1,
@@ -50,7 +50,7 @@ return [
'display_news' => 6,
// Users are able to sign up
- 'registration_enabled' => true,
+ 'registration_enabled' => env('REGISTRATION_ENABLED', 1),
// Only arrived angels can sign up for shifts
'signup_requires_arrival' => false,