Advertisement
JamesTheAwesomeDude

/etc/hiawatha/hiawatha.conf

Feb 27th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. ServerId = webuser
  2. ConnectionsTotal = 150
  3. ConnectionsPerIP = 10
  4. SystemLogfile = /var/log/hiawatha/system.log
  5. GarbageLogfile = /var/log/hiawatha/garbage.log
  6.  
  7. Binding {
  8. Port = 80
  9. Interface = 0.0.0.0
  10. # Interface = 127.0.0.1
  11. }
  12.  
  13. Binding {
  14. Port = 443
  15. SSLcertFile = /serverkey.pem
  16. }
  17.  
  18. Hostname = 127.0.0.1
  19. WebsiteRoot = /root/Web-Server
  20. StartFile = index.html
  21. AccessLogfile = /var/log/hiawatha/access.log
  22. ErrorLogfile = /var/log/hiawatha/error.log
  23.  
  24. #add this stuff to get a perl script working (pplog)...
  25. #QUISP has a binary executable CGI named 'quisp.bin'...
  26. MimetypeConfig = /etc/mime.types
  27. #CGIhandler = /usr/bin/perl:pl
  28. CGIextension = pl,bin
  29. ExecuteCGI = yes
  30. #QUISP puts %0D, %0A (carriage-return, line-feed) chars in the url
  31. #(v128), to allow chars below ascii 32 need this...
  32. SecureURL = no
  33.  
  34. VirtualHost {
  35. Hostname = torrent.*******************.**
  36. ReverseProxy http://127.0.0.1:8080/
  37. RequireSSL = yes
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement