34 lines
884 B
Python
34 lines
884 B
Python
"""WizardKit: Config - Net"""
|
|
# pylint: disable=bad-whitespace
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
|
|
# Servers
|
|
BACKUP_SERVERS = {
|
|
'Anaconda': {
|
|
'Address': 'anaconda.1201.com',
|
|
'Share': 'Backups',
|
|
'RO-User': 'cx',
|
|
'RO-Pass': 'cx',
|
|
'RW-User': 'backup',
|
|
'RW-Pass': '1201 loves computers!',
|
|
},
|
|
}
|
|
BENCHMARK_SERVER = {
|
|
'Name': 'Nextcloud',
|
|
'Short Url': 'https://nextcloud.1201.com/index.php/f/108024',
|
|
'Url': 'https://1201.ddns.net:8001/public.php/webdav/Benchmarks',
|
|
'User': 'QAx28ZgmPwCwGHc',
|
|
'Pass': '',
|
|
}
|
|
CRASH_SERVER = {
|
|
'Name': 'Nextcloud',
|
|
'Url': 'https://1201.ddns.net:8001/public.php/webdav/Issues',
|
|
'User': 'n9Ds76WizNyBw8Y',
|
|
'Pass': '',
|
|
'Headers': {'X-Requested-With': 'XMLHttpRequest'},
|
|
}
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|