forked from LA1TV/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.php.sample
More file actions
23 lines (23 loc) · 791 Bytes
/
.env.php.sample
File metadata and controls
23 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
// copy to .env.php if this is running in the production environment
return array(
'API_ENABLED' => true,
// https://github.com/LA1TV/Website/issues/737#issue-127234219
'DEGRADED_SERVICE_ENABLED' => false,
// note if this is disabled push notifications also need disabling in the notifications service.
'PUSH_NOTIFICATIONS_ENABLED' => true,
'GCM_API_KEY' => null,
'ENCRYPTION_KEY' => null, // TODO: generate a key
'ENCRYPTION_CIPHER' => MCRYPT_RIJNDAEL_256,
'MYSQL_HOST' => "localhost",
'MYSQL_DATABASE' => "",
'MYSQL_USER' => "",
'MYSQL_PASSWORD' => "",
'REDIS_PORT' => 6379,
'REDIS_PASSWORD' => "",
'FACEBOOK_APP_ID' => null,
'FACEBOOK_APP_SECRET' => null,
'HOME_REDIRECT_URL' => null,
'NOTIFICATION_SERVICE_URL' => null,
'BLOG_URL' => null
);