14 lines
178 B
Caddyfile
14 lines
178 B
Caddyfile
:5000 {
|
|
handle_path /api/* {
|
|
reverse_proxy * localhost:3000
|
|
}
|
|
|
|
handle_path /uploads/* {
|
|
root * /uploads/
|
|
file_server
|
|
}
|
|
|
|
handle {
|
|
reverse_proxy * localhost:4200
|
|
}
|
|
}
|