httpd.conf 476 B

123456789101112131415161718192021222324
  1. # [root]
  2. # logfile = logs/httpd.log
  3. # loglevel = [VERBOSE,DEBUG,INFO,WARN,ERROR,FATAL,SILENT]
  4. loglevel = INFO
  5. log_remain_days = 3
  6. log_filesize = 64M
  7. # worker_processes = auto # auto = ncpu
  8. worker_processes = 4
  9. # http server
  10. port = 8080
  11. #base_url = /v1/api
  12. document_root = html
  13. home_page = index.html
  14. #error_page = error.html
  15. index_of = /downloads/
  16. # SSL/TLS
  17. ssl = off
  18. ssl_certificate = cert/server.crt
  19. ssl_privatekey = cert/server.key
  20. ssl_ca_certificate = cert/cacert.pem