You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
385 B
17 lines
385 B
# -*- coding: utf-8 -*-
|
|
|
|
|
|
# Agent ip and port
|
|
SELF_IP = '127.0.0.1'
|
|
SELF_PORT = 2134
|
|
|
|
# Main server ip and port
|
|
SERVER_IP = '127.0.0.1'
|
|
SERVER_PORT = 8000 # 8443
|
|
|
|
# Certificates
|
|
CERTFILE = "/etc/ssl/server.crt"
|
|
KEYFILE = "/etc/ssl/server.key"
|
|
|
|
# Использовать-ли при передаче инфы между NAS и основным сервером SSL
|
|
IS_USE_SSL = False
|