Files
hoppscotch/aio-subpath-access.Caddyfile
Mir Arif Hasan 3acc0ec9b6 feat: mock server (#5482)
Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com>
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
2025-10-27 23:03:22 +05:30

47 lines
852 B
Caddyfile

{
admin off
persist_config off
}
:{$HOPP_AIO_ALTERNATE_PORT:80} {
# Serve the `selfhost-web` SPA by default
root * /site/selfhost-web
file_server
handle_path /admin* {
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* {
@mock {
header_regexp host Host ^[^.]+\.mock\..*$
}
handle @mock {
rewrite * /mock{uri}
reverse_proxy localhost:8080
}
handle {
reverse_proxy localhost:8080
}
}
# Handle requests under `/desktop-app-server*` path
handle_path /desktop-app-server* {
reverse_proxy localhost:3200
}
# Catch-all route for unknown paths, serves `selfhost-web` SPA
handle {
root * /site/selfhost-web
file_server
try_files {path} /
}
}