11 lines
266 B
Python
11 lines
266 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
Configuration file
|
||
|
"""
|
||
|
|
||
|
HC_ROOT = 'https://hc.yaltik.net'
|
||
|
CONFIG = [{'host': 'server_name',
|
||
|
'uuid': 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
|
||
|
'domains': ['www.example.com', 'beta.example.com', 'another.sample.net']}]
|