Config for URLS

This commit is contained in:
2026-05-02 03:25:15 -04:00
parent 80316f1221
commit d70df88eca
2 changed files with 16 additions and 7 deletions
+7 -7
View File
@@ -515,31 +515,31 @@ class OfficeDashboardService(BaseService):
system_url = [
{
"name": "AirPlay System",
"url": "http://10.10.10.121:8080/"
"url": settings.SYSTEM_SERVERS_AIRPLAY
},
{
"name": "Kafka",
"url": "http://10.10.10.120:19000/"
"url": settings.SYSTEM_SERVERS_KAFKA
},
{
"name": "Ansible",
"url": "http://172.16.4.90:3000"
"url": settings.SYSTEM_SERVERS_ANSIBLE
},
{
"name": "Int HaProxy",
"url": "http://172.16.4.99:5555/"
"url": settings.SYSTEM_SERVERS_ANSIBLE
},
{
"name": "Provision Server",
"url": "http://10.13.3.15:8094"
"url": settings.SYSTEM_SERVERS_PROVISION
},
{
"name": "Event Manager",
"url": "http:;//10.13.3.15:5005"
"url": settings.SYSTEM_SERVERS_EVENT_MANAGER
},
{
"name": "Socket Server",
"url": "http:;//10.13.3.15:5006"
"url": settings.SYSTEM_SERVERS_SOCKET_MANAGER
},
]