summaryrefslogtreecommitdiff
path: root/inc/config.sample.php
blob: 5c14806743380f2d271fa7b16ad0085ed73b16cb (plain)
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
40
41
42
<?php
$b_config = array(

  // Site URL with trailing slash
  'base_url' => 'https://www.bulletinalpha.tk/',

  // Cookies Information
  'c_name' => 'bulletin', // Cookie name
  'c_expire' => 31536000, // Expiration time (seconds, default: 1 year)
  'c_dom' => '.bulletinalpha.tk', // Domain
  'c_path' => '/', // Path
  'c_sec' => true, // Serve cookies only over https
  'c_http' => true, // Don't serve cookies to javascript

  // Database Information
  'db_host' => 'localhost',
  'db_name' => '',
  'db_user' => '',
  'db_pass' => '',

  // Send emails from this address
  'mail_from' => 'Bulletin <noreply@bulletinalpha.tk>',

  // Mobile site configuration
  'mobile_base' => 'https://m.bulletinalpha.tk/',
  'moblie_host' => 'm.bulletinalpha.tk',

  // Number of ads per page in the employee dashboard
  'ads_per_page' => 10,

  // Email footer
  'eml_footer' => '',

  // Mailgun config
  'mg_key' => '',
  'mg_dom' => '',

  // ReCAPTCHA config
  'recaptcha_api_key' => '',
  'recaptcha_api_secret' => '',
);
?>