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]
app_dir = /var/lib/wcs
data_dir = /usr/share/wcs
# Automatically create virtual host
auto_create_appdir = true
# Set auto_create_appdir to true to automatically create virtual hosts on
# HTTP access.
# auto_create_appdir = false
use_long_traces = true
#error_log = /var/lib/wcs/error.log
# Redirect on unknown virtual host

View File

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