gateway_service/configs/routes.json
AndreyIgorevich d9ffefd5f6 Add project
2025-07-10 01:10:47 +07:00

65 lines
1.2 KiB
JSON

{
"v1": {
"/auth": [
{
"url": "https://0.0.0.0:5201",
"role": "master",
"allow_self_signed": true
}
],
"/user": [
{
"url": "https://yobble-user-service:5202",
"role": "master",
"allow_self_signed": true
}
],
"/profile": [
{
"url": "https://yobble-profile-service:5203",
"role": "master",
"allow_self_signed": true
}
],
"/feed": [
{
"url": "https://yobble-feed-service:5204",
"role": "master",
"allow_self_signed": true
}
],
"/chat/private": [
{
"url": "https://localhost:5205",
"role": "master",
"allow_self_signed": true
}
]
},
"v2": {
"/auth": [
{
"url": "http://auth_v2_service:5301",
"role": "master",
"allow_self_signed": false
}
]
},
"default": {
"/docs": [
{
"url": "https://yobble-docs-service:5199",
"role": "slave",
"allow_self_signed": true
}
],
"/test": [
{
"url": "https://localhost:9097",
"role": "test",
"allow_self_signed": true
}
]
}
}