Multiple mercurial repos w/ gunicorn Revision 386530373164 (Sat Jun 04 2011 at 07:55) - Diff Link to this snippet: https://friendpaste.com/7l7ilU3mUQPNymi8JMQIv9 Embed: manni perldoc borland colorful default murphy trac fruity autumn bw emacs pastie friendly Show line numbers Wrap lines 12345678910111213141516171819202122232425262728293031323334# --------------------------# hgweb.py# --------------------------from mercurial.hgweb.hgweb_mod import hgwebfrom mercurial.hgweb.hgwebdir_mod import hgwebdirCONFIG = '/home/martyn/hgweb.config'application = hgwebdir(CONFIG)# --------------------------# hgweb.config# --------------------------[ui]username = martyneditor = vim[web]baseurl =/.style= gitwebpush_ssl = falseallow_push = *[paths]repo1 = /home/martyn/repo1/repo2 = /home/martyn/repo2/# --------------------------# Now run # --------------------------gunicorn -w 3 hgweb:application