mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
fix(caddy): update all reverse proxy ports to match docker containers
Many Caddy ports were outdated and pointing to dead services: - mana.how: 5173→5000 - chat: 3000→5010, chat-api: 3002→3030 - todo: 5188→5011 - calendar: 5186→5012, calendar-api: 3016→3032 - clock: 5187→5013, clock-api: 3017→3033 - contacts: 5184→5014 - grafana: 3100→8000, stats: 3200→8010 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3f91c4656a
commit
dea632c6c7
1 changed files with 13 additions and 13 deletions
|
|
@ -16,7 +16,7 @@ auth.mana.how {
|
|||
# ManaCore Dashboard (Main)
|
||||
# ============================================
|
||||
mana.how {
|
||||
reverse_proxy localhost:5173
|
||||
reverse_proxy localhost:5000
|
||||
}
|
||||
|
||||
www.mana.how {
|
||||
|
|
@ -27,44 +27,44 @@ www.mana.how {
|
|||
# Chat App
|
||||
# ============================================
|
||||
chat.mana.how {
|
||||
reverse_proxy localhost:3000
|
||||
reverse_proxy localhost:5010
|
||||
}
|
||||
|
||||
chat-api.mana.how {
|
||||
reverse_proxy localhost:3002
|
||||
reverse_proxy localhost:3030
|
||||
}
|
||||
|
||||
# ============================================
|
||||
# Todo App
|
||||
# ============================================
|
||||
todo.mana.how {
|
||||
reverse_proxy localhost:5188
|
||||
reverse_proxy localhost:5011
|
||||
}
|
||||
|
||||
todo-api.mana.how {
|
||||
reverse_proxy localhost:3018
|
||||
reverse_proxy localhost:3031
|
||||
}
|
||||
|
||||
# ============================================
|
||||
# Calendar App
|
||||
# ============================================
|
||||
calendar.mana.how {
|
||||
reverse_proxy localhost:5186
|
||||
reverse_proxy localhost:5012
|
||||
}
|
||||
|
||||
calendar-api.mana.how {
|
||||
reverse_proxy localhost:3016
|
||||
reverse_proxy localhost:3032
|
||||
}
|
||||
|
||||
# ============================================
|
||||
# Clock App
|
||||
# ============================================
|
||||
clock.mana.how {
|
||||
reverse_proxy localhost:5187
|
||||
reverse_proxy localhost:5013
|
||||
}
|
||||
|
||||
clock-api.mana.how {
|
||||
reverse_proxy localhost:3017
|
||||
reverse_proxy localhost:3033
|
||||
}
|
||||
|
||||
clock-bot.mana.how {
|
||||
|
|
@ -75,11 +75,11 @@ clock-bot.mana.how {
|
|||
# Contacts App
|
||||
# ============================================
|
||||
contacts.mana.how {
|
||||
reverse_proxy localhost:5184
|
||||
reverse_proxy localhost:5014
|
||||
}
|
||||
|
||||
contacts-api.mana.how {
|
||||
reverse_proxy localhost:3015
|
||||
reverse_proxy localhost:3034
|
||||
}
|
||||
|
||||
# ============================================
|
||||
|
|
@ -115,9 +115,9 @@ playground.mana.how {
|
|||
# Monitoring & Analytics
|
||||
# ============================================
|
||||
grafana.mana.how {
|
||||
reverse_proxy localhost:3100
|
||||
reverse_proxy localhost:8000
|
||||
}
|
||||
|
||||
stats.mana.how {
|
||||
reverse_proxy localhost:3200
|
||||
reverse_proxy localhost:8010
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue