WizardKit/scripts/wk/cfg/net.py

35 lines
892 B
Python

"""WizardKit: Config - Net"""
# 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'},
}
# Misc
IMGUR_CLIENT_ID='3d1ee1d38707b85'
if __name__ == '__main__':
print("This file is not meant to be called directly.")