feat: subpath access for individual containers

This commit is contained in:
jamesgeorge007
2023-11-10 12:51:11 +05:30
parent 79a9285f93
commit 64517a53af
6 changed files with 68 additions and 4 deletions

11
Caddyfile Normal file
View File

@@ -0,0 +1,11 @@
:3500 {
handle_path /admin* {
reverse_proxy localhost:3100
}
handle_path /backend* {
reverse_proxy localhost:3170
}
reverse_proxy localhost:3000 # Proxy other requests to your server running on port 3001
}