mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 19:00:52 +01:00
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"}
|