Files
hoppscotch/aio.Caddyfile
jamesgeorge007 aebcbac979 chore: generate multiple builds for sh-admin
Enables seamless transition to/from subpath based access
2023-11-10 12:51:35 +05:30

48 lines
1020 B
Caddyfile

# TODO: Update the subpath-based implementation to use standard HTTP(S) ports
:3000 {
try_files {path} /
root * /site/selfhost-web
file_server
}
:3100 {
try_files {path} /
root * /site/sh-admin
file_server
}
:8080 {
# Serve the `selfhost-web` SPA by default
root * /site/selfhost-web
file_server
handle_path /admin* {
# Check the ENABLE_SUBPATH_BASED_ACCESS environment variable
@enabledSubpathBasedAccess {
expression {env.ENABLE_SUBPATH_BASED_ACCESS} == "true"
}
# Conditionally serve /site/sh-admin-subpath-access if ENABLE_SUBPATH_BASED_ACCESS is true
handle @enabledSubpathBasedAccess {
root * /site/sh-admin-subpath-access
file_server
# Ensures any non-existent file in the server is routed to the SPA
try_files {path} /
}
}
# Handle requests under `/backend*` path
handle_path /backend* {
reverse_proxy localhost:3170
}
# Catch-all route for unknown paths, serves `selfhost-web` SPA
handle {
root * /site/selfhost-web
file_server
try_files {path} /
}
}