aio-multiport-setup.Caddyfile 252 B

123456789101112131415161718192021222324
  1. {
  2. admin off
  3. persist_config off
  4. }
  5. :3000 {
  6. try_files {path} /
  7. root * /site/selfhost-web
  8. file_server
  9. }
  10. :3100 {
  11. try_files {path} /
  12. root * /site/sh-admin-multiport-setup
  13. file_server
  14. }
  15. :3170 {
  16. reverse_proxy localhost:8080
  17. }
  18. :80 {
  19. respond 404
  20. }