forked from rafaoski/site-uk3-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
58 lines (45 loc) · 1.53 KB
/
config.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
<?php
/**
* ProcessWire Configuration File
*
* Site-specific configuration for ProcessWire.
* This config.php file was generated by the ProcessExportProfile module.
*
* 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.
*
* ProcessWire
* Copyright (C) 2017 by Ryan Cramer
* Licensed under MPL 2.0
*
* https://processwire.com
*
*/
if(!defined("PROCESSWIRE")) die();
/*** SITE CONFIG *************************************************************************/
$config->prependTemplateFile = '_init.php';
$config->appendTemplateFile = '_main.php';
$config->useMarkupRegions = true;
$config->useFunctionsAPI = true;
$config->defaultAdminTheme = 'AdminThemeUikit';
/**
* Example Custom Config
* https://processwire.com/api/variables/config/
* https://processwire.com/blog/posts/pw-3.0.87/#new-field-template-context-settings
*/
/** Advanced Configuration **/
// $config->advanced = true;
/** Show demo site **/
// $config->demo = true;
/** https://processwire.com/blog/posts/pw-3.0.99/ **/
// $config->noHTTPS = true;
/** ignore HTTPS for this hostname only: **/
// $config->noHTTPS = 'dev.processwire.com';
/** ignore HTTPS for these hostnames: **/
// $config->noHTTPS = [
// 'dev.processwire.com',
// 'stage.processwire.com',
// 'localhost:8888',
// ];
/*** INSTALLER CONFIG ********************************************************************/