Caddyfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. :9051 {
  2. root * /root/Downloads/hichina2023/hichina-admin-front/dist/spa
  3. try_files {path} /index.html
  4. file_server
  5. log {
  6. output file ./hichinaadminfront.log {
  7. roll_size 1gb
  8. roll_keep 5
  9. roll_keep_for 720h
  10. }
  11. }
  12. handle_errors {
  13. rewrite * /404.html
  14. file_server
  15. }
  16. }
  17. :8765 {
  18. root * /root/underconstruction/dist/spa
  19. try_files {path} /index.html
  20. file_server
  21. log {
  22. output file ./underconstruction.log {
  23. roll_size 1gb
  24. roll_keep 5
  25. roll_keep_for 720h
  26. }
  27. }
  28. handle_errors {
  29. rewrite * /404.html
  30. file_server
  31. }
  32. }
  33. :9053 {
  34. root * /root/Downloads/hichina2023/hichina-main-front/dist
  35. try_files {path} /index.html
  36. file_server
  37. log {
  38. output file ./mainsiteqafront.log {
  39. roll_size 1gb
  40. roll_keep 5
  41. roll_keep_for 720h
  42. }
  43. }
  44. handle_errors {
  45. rewrite * /404.html
  46. file_server
  47. }
  48. }