Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static = Dir(base='static/',
- index_file='index.html',
- default_ctype='text/plain')
- routes={
- '/': static
- }
- localhost = Host(name="localhost", routes=routes)
- # the server to run them all
- main = Server(
- uuid="9dc3975a-6b27-43a8-8ef4-43af724d1ade",
- access_log="/logs/access.log",
- error_log="/logs/error.log",
- chroot="/var/www/mongrel2/",
- pid_file="/run/mongrel2.pid",
- default_host="localhost",
- name="main",
- port=80,
- hosts=[localhost]
- )
- settings = {"zeromq.threads": 1}
- servers = [main]
Add Comment
Please, Sign In to add comment