mirror of
https://github.com/orris-inc/orris.git
synced 2026-05-06 21:44:01 +08:00
29 lines
563 B
Caddyfile
29 lines
563 B
Caddyfile
# Caddyfile for Orris
|
|
# Replace orris.example.com with your domain for automatic HTTPS
|
|
|
|
:80 {
|
|
# API routes -> backend service
|
|
handle /api/* {
|
|
uri strip_prefix /api
|
|
reverse_proxy orris:8080
|
|
}
|
|
|
|
# All other routes -> frontend service
|
|
handle {
|
|
reverse_proxy frontend:80
|
|
}
|
|
}
|
|
|
|
orris.example.com {
|
|
# API routes -> backend service
|
|
handle /api/* {
|
|
uri strip_prefix /api
|
|
reverse_proxy orris:8080
|
|
}
|
|
|
|
# All other routes -> frontend service
|
|
handle {
|
|
reverse_proxy frontend:80
|
|
}
|
|
}
|