1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-24 23:25:24 +00:00

Remove some constants from settings.py

This commit is contained in:
catborise 2020-05-29 17:13:41 +03:00 committed by catborise
parent 7538ddab4f
commit 24a578f61b

View file

@ -151,12 +151,6 @@ WS_PUBLIC_HOST = None
# Websock SSL connection # Websock SSL connection
WS_CERT = None WS_CERT = None
# List of console types
QEMU_CONSOLE_TYPES = ['vnc', 'spice']
# Default console type
QEMU_CONSOLE_DEFAULT_TYPE = 'vnc'
# List of console listen addresses # List of console listen addresses
QEMU_CONSOLE_LISTEN_ADDRESSES = ( QEMU_CONSOLE_LISTEN_ADDRESSES = (
('127.0.0.1', 'Localhost'), ('127.0.0.1', 'Localhost'),
@ -173,11 +167,5 @@ QEMU_KEYMAPS = ['ar', 'da', 'de', 'de-ch', 'en-gb', 'en-us', 'es', 'et', 'fi',
LIBVIRT_KEEPALIVE_INTERVAL = 5 LIBVIRT_KEEPALIVE_INTERVAL = 5
LIBVIRT_KEEPALIVE_COUNT = 5 LIBVIRT_KEEPALIVE_COUNT = 5
ALLOW_INSTANCE_MULTIPLE_OWNER = True
ALLOW_EMPTY_PASSWORD = False
NEW_USER_DEFAULT_INSTANCES = [] NEW_USER_DEFAULT_INSTANCES = []
CLONE_INSTANCE_DEFAULT_PREFIX = 'instance'
CLONE_INSTANCE_AUTO_NAME = False
CLONE_INSTANCE_AUTO_MIGRATE = False
LOGS_PER_PAGE = 100