11 lines
227 B
Caddyfile
11 lines
227 B
Caddyfile
# Frontend and API
|
|
http://:80 {
|
|
reverse_proxy /api/* http://rate:5003
|
|
reverse_proxy http://frontend:3000
|
|
}
|
|
|
|
# prns.cc (profile URL shortener)
|
|
http://:81 {
|
|
rewrite * /sid{uri}
|
|
reverse_proxy http://backend:5000
|
|
}
|