Files
Toby Kohlhagen b95af1940c first commit
2025-10-01 13:56:21 +09:30

18 lines
245 B
Caddyfile

https://*:8080 {
root * ./frontend
try_files {path} {path}/index.html
handle {
@file_exists file
handle @file_exists {
file_server
}
@not_file_exists not file
handle @not_file_exists {
reverse_proxy localhost:3000
}
}
}