35 lines
896 B
Python
35 lines
896 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://1201.ddns.net/nextcloud/f/14775',
|
|
'Url': 'https://1201.ddns.net/nextcloud/public.php/webdav/Benchmarks',
|
|
'User': 'LHdPTofNBQNGBbX',
|
|
'Pass': '',
|
|
}
|
|
CRASH_SERVER = {
|
|
'Name': 'Nextcloud',
|
|
'Url': 'https://1201.ddns.net/nextcloud/public.php/webdav/Issues',
|
|
'User': 'fnyzeK64rKxcEL4',
|
|
'Pass': '',
|
|
'Headers': {'X-Requested-With': 'XMLHttpRequest'},
|
|
}
|
|
# Misc
|
|
IMGUR_CLIENT_ID='3d1ee1d38707b85'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|