forked from ISPsystem/isp-maintenance
11 lines
298 B
Python
11 lines
298 B
Python
|
from settings.platform import PLATFORM_TYPE
|
||
|
|
||
|
# Name of nginx container:
|
||
|
INPUT_HOSTNAME = 'input' if PLATFORM_TYPE == 'vm' else 'dci_input_1'
|
||
|
|
||
|
# Port that nginx container is listening:
|
||
|
INPUT_PORT = '1500'
|
||
|
|
||
|
# Headers for internal auth:
|
||
|
HEADERS = {"Internal-Auth": "on", "Accept": "application/json"}
|