more env as variables
This commit is contained in:
parent
a65d92f04e
commit
d7ba51b3ec
|
@ -15,7 +15,7 @@ return [
|
||||||
'api_key' => '',
|
'api_key' => '',
|
||||||
|
|
||||||
// Enable maintenance mode (show a static page)
|
// Enable maintenance mode (show a static page)
|
||||||
'maintenance' => false,
|
'maintenance' => env('MAINTENANCE', false),
|
||||||
|
|
||||||
// Set to development to enable debugging messages
|
// Set to development to enable debugging messages
|
||||||
'environment' => 'production',
|
'environment' => 'production',
|
||||||
|
@ -24,10 +24,10 @@ return [
|
||||||
'faq_url' => 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers',
|
'faq_url' => 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers',
|
||||||
|
|
||||||
// Contact email address, linked on every page
|
// 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
|
// 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
|
// Default theme, 1=style1.css
|
||||||
'theme' => 1,
|
'theme' => 1,
|
||||||
|
@ -50,7 +50,7 @@ return [
|
||||||
'display_news' => 6,
|
'display_news' => 6,
|
||||||
|
|
||||||
// Users are able to sign up
|
// Users are able to sign up
|
||||||
'registration_enabled' => true,
|
'registration_enabled' => env('REGISTRATION_ENABLED', 1),
|
||||||
|
|
||||||
// Only arrived angels can sign up for shifts
|
// Only arrived angels can sign up for shifts
|
||||||
'signup_requires_arrival' => false,
|
'signup_requires_arrival' => false,
|
||||||
|
|
|
@ -28,6 +28,7 @@ http {
|
||||||
fastcgi_pass engelsystem:9000;
|
fastcgi_pass engelsystem:9000;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
fastcgi_param HTTPS on;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue