-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.php
39 lines (39 loc) · 1.04 KB
/
config.example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// Copy this file 'config.example.php' to 'config.php'
$config = [
'base_url' => 'https://vaccine.yourdomain.com',
// IP that run.php will be called
'self_ip' => '1.2.3.4',
// MySQL connection details
'mysql' => [
'host' => 'localhost',
'port' => '3306',
'user' => 'vaccine-user',
'password' => '',
'db_name' => 'vaccine'
],
//
'email' => [
'host' => 'mail.yourdomain.com',
'port' => 587,
'username' => '[email protected]',
'password' => '',
'from_name' => 'Vaccine Notifier',
'from_address' => '[email protected]',
'reply_to' => [
'name' => 'Your Name',
'email' => '[email protected]'
]
],
'google_maps' => [
'api_key' => ''
],
'web_push' => [
'subject' => 'mailto:[email protected]',
// VAPID public & private key
'public_key' => '',
'private_key' => ''
],
// Starts with G-
'google_analytics_id' => ''
];