<div class="gmail_quote">2012/11/27 Volodymyr Kostyrko <span dir="ltr"><<a href="mailto:c.kworr@gmail.com" target="_blank">c.kworr@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Maxim is right about arguments. But why not just use uwsgi?<br>
<br>
  location ~ ^/hg(/.*) {<br>
    include uwsgi_params;<br>
    uwsgi_param SCRIPT_NAME '';<br>
    uwsgi_param PATH_INFO $1;<br>
    uwsgi_param HOST $host;<br>
    uwsgi_param REMOTE_USER $remote_user;<br>
    uwsgi_pass unix:/path/to/hg/.socket;<br>
  }<br>
<br>
  location /static/ {<br>
    root /usr/local/lib/python2.7/site-<u></u>packages/mercurial/templates;<br>
  }<br>
<br>
uwsgi_socket=/path/to/hg/.<u></u>socket<br>
uwsgi_flags='-C -L -M --threads 10 --file /where/is/hg/hgweb.wsgi'<br>
<br>
hgweb.conf:<br>
[web]<br>
prefix = /hg<br>
baseurl = <a href="http://hostname/hg/" target="_blank">http://hostname/hg/</a><br>
<br>
[paths]<br>
/ = /where/is/hg/*<span class="HOEnZb"><font color="#888888"></font></span><br></blockquote></div><br>Thanks for your answer.<br>I didn't try this way because I didn't know it.<br>Thank you for this hint.<br>