mirror of
https://github.com/processwire/processwire.git
synced 2025-08-22 14:23:05 +02:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?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 3.x
|
|
* Copyright (C) 2018 by Ryan Cramer
|
|
*
|
|
* https://processwire.com
|
|
*
|
|
*/
|
|
|
|
if(!defined("PROCESSWIRE")) die();
|
|
|
|
/*** SITE 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 = true;
|
|
|
|
$config->prependTemplateFile = '_init.php';
|
|
$config->appendTemplateFile = '_main.php';
|
|
$config->useMarkupRegions = true;
|
|
$config->useFunctionsAPI = true;
|
|
|
|
|
|
/*** INSTALLER CONFIG ********************************************************************/
|
|
|
|
|