-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.template.php
97 lines (79 loc) · 2.42 KB
/
config.template.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php namespace ProcessWire;
/**
* ProcessWire Configuration File
*
* Site-specific configuration for ProcessWire
*
* Please see the file /wire/config.php which contains all configuration options you may
* specify here. Simply copy any of the configuration options from that file and paste
* them into this file in order to modify them.
*
* SECURITY NOTICE
* In non-dedicated environments, you should lock down the permissions of this file so
* that it cannot be seen by other users on the system. For more information, please
* see the config.php section at: https://processwire.com/docs/security/file-permissions/
*
* This file is licensed under the MIT license
* https://processwire.com/about/license/mit/
*
* ProcessWire 3.x, Copyright 2016 by Ryan Cramer
* https://processwire.com
*
*/
if(!defined("PROCESSWIRE")) die();
/*** SITE CONFIG *************************************************************************/
/** @var Config $config */
/**
* Enable debug mode?
*
* Debug mode causes additional info to appear for use during dev and debugging.
* This is almost always recommended for sites in development. However, you should
* always have this disabled for live/production sites.
*
* @var bool
*
*/
$config->debug = false;
/*** INSTALLER CONFIG ********************************************************************/
/**
* Installer: Database Configuration
*
*/
$config->dbHost = '172.17.0.1';
$config->dbName = 'processwire';
$config->dbUser = 'processwire';
$config->dbPass = '<secret>';
$config->dbPort = '3306';
/**
* Installer: User Authentication Salt
*
* Must be retained if you migrate your site from one server to another
*
*/
$config->userAuthSalt = '0ec58055412d1844b4550dc1bceebb2e';
/**
* Installer: File Permission Configuration
*
*/
$config->chmodDir = '0755'; // permission for directories created by ProcessWire
$config->chmodFile = '0644'; // permission for files created by ProcessWire
/**
* Installer: Time zone setting
*
*/
$config->timezone = 'Europe/Zurich';
/**
* Installer: Unix timestamp of date/time installed
*
* This is used to detect which when certain behaviors must be backwards compatible.
* Please leave this value as-is.
*
*/
$config->installed = 1500231494;
/**
* Installer: HTTP Hosts Whitelist
*
*/
$config->httpHosts = array('jarvis12.piratenpartei-bayern.de');
$config->prependTemplateFile = "_init.php";
$config->appendTemplateFile = "_main.php";