Guest User

Untitled

a guest
Jan 12th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. static = Dir(base='static/',
  2. index_file='index.html',
  3. default_ctype='text/plain')
  4.  
  5. routes={
  6. '/': static
  7. }
  8.  
  9. localhost = Host(name="localhost", routes=routes)
  10.  
  11. # the server to run them all
  12. main = Server(
  13. uuid="9dc3975a-6b27-43a8-8ef4-43af724d1ade",
  14. access_log="/logs/access.log",
  15. error_log="/logs/error.log",
  16. chroot="/var/www/mongrel2/",
  17. pid_file="/run/mongrel2.pid",
  18. default_host="localhost",
  19. name="main",
  20. port=80,
  21. hosts=[localhost]
  22. )
  23.  
  24. settings = {"zeromq.threads": 1}
  25. servers = [main]
Add Comment
Please, Sign In to add comment