18 lines
324 B
Python
18 lines
324 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuation settings for Aberrant.
|
|
"""
|
|
rtorrents = [
|
|
'scgi://localhost:5000',
|
|
'scgi://localhost:5001',
|
|
]
|
|
|
|
server_domain = 'steelbea.me'
|
|
url_prefix = '/aberrant'
|
|
buckler = {
|
|
'url': "http://192.168.1.100:5400/buckler",
|
|
'app_id': 1,
|
|
'app_key': """password""",
|
|
'login_url': "/buckler/login",
|
|
}
|