server.conf 250 B

123456789101112131415161718
  1. {
  2. "server":
  3. {
  4. "port": 8080,
  5. "root": "./html/",
  6. "error_page" : [
  7. {
  8. "error" : [ 404 ],
  9. "page" : "404.html"
  10. },
  11. {
  12. "error" : [ 500, 502, 503, 504],
  13. "page" : "50x.html"
  14. }
  15. ]
  16. }
  17. }