1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Remove some constants from settings.py

This commit is contained in:
catborise 2020-05-29 17:13:41 +03:00
parent e44b0d4df3
commit 9057d3bebe

View file

@ -134,12 +134,6 @@ WS_PUBLIC_HOST = None
# Websock SSL connection
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
QEMU_CONSOLE_LISTEN_ADDRESSES = (
('127.0.0.1', 'Localhost'),
@ -156,10 +150,5 @@ QEMU_KEYMAPS = ['ar', 'da', 'de', 'de-ch', 'en-gb', 'en-us', 'es', 'et', 'fi',
LIBVIRT_KEEPALIVE_INTERVAL = 5
LIBVIRT_KEEPALIVE_COUNT = 5
ALLOW_INSTANCE_MULTIPLE_OWNER = True
NEW_USER_DEFAULT_INSTANCES = []
CLONE_INSTANCE_DEFAULT_PREFIX = 'instance'
CLONE_INSTANCE_AUTO_NAME = False
CLONE_INSTANCE_AUTO_MIGRATE = False
LOGS_PER_PAGE = 100