settings: don't enable auto vhost feature by default (#26943)

This commit is contained in:
Frédéric Péters 2018-10-03 11:18:17 +02:00
parent 89675bbdcb
commit f586352b40
2 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
[main] [main]
app_dir = /var/lib/wcs app_dir = /var/lib/wcs
data_dir = /usr/share/wcs data_dir = /usr/share/wcs
# Automatically create virtual host # Set auto_create_appdir to true to automatically create virtual hosts on
auto_create_appdir = true # HTTP access.
# auto_create_appdir = false
use_long_traces = true use_long_traces = true
#error_log = /var/lib/wcs/error.log #error_log = /var/lib/wcs/error.log
# Redirect on unknown virtual host # Redirect on unknown virtual host

View File

@ -17,6 +17,6 @@
APP_DIR = "/var/lib/wcs" APP_DIR = "/var/lib/wcs"
DATA_DIR = "/usr/share/wcs" DATA_DIR = "/usr/share/wcs"
ERROR_LOG = None ERROR_LOG = None
AUTO_CREATE_VHOSTS = True AUTO_CREATE_VHOSTS = False
REDIRECT_ON_UNKNOWN_VHOST = None REDIRECT_ON_UNKNOWN_VHOST = None
USE_LONG_TRACES = True USE_LONG_TRACES = True