<div dir="ltr">Thanks for the hint... I though passing SCRIPT_NAME was a "ugly" way to do into, but since it was refereed in the docs...<br><div><br>I was using mount:<br>uwsgi -s /tmp/moin.socket --uid nginx --gid nginx --mount /wiki=/usr/pkg/share/moin/mywiki/moin.wsgi -M -p 2 -d /var/log/nginx/uwsgi_moin.log --logdate --pidfile=/var/run/uwsgi_moin.pid<br>

<br></div><div>I added  --manage-script-name has suggested, now it points to the right direction... ;)<br><br></div><div>It would be nice if the link was updated with this info...<br></div><div><br></div><div>Many thanks,<br>

</div><div>Mike<br></div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Mar 25, 2013 at 6:00 PM, Roberto De Ioris <span dir="ltr"><<a href="mailto:roberto@unbit.it" target="_blank">roberto@unbit.it</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><br>
> Hi,<br>
><br>
> I followed the example in:<br>
><br>
> <a href="http://projects.unbit.it/uwsgi/wiki/Example#MoinMoinonlinenow" target="_blank">http://projects.unbit.it/uwsgi/wiki/Example#MoinMoinonlinenow</a><br>
><br>
><br>
> However when I type domain/wiki I get a message that the page does not<br>
> exist yet... which already tells me something is wrong, and also all my<br>
> URL's are point to '/' not '/wiki'<br>
><br>
> I can't seem to figure out why this happens... I tough using:<br>
><br>
> uwsgi_param SCRIPT_NAME /wiki;<br>
> uwsgi_modifier1 30;<br>
><br>
> Would do the trick.... but It doesn't...<br>
><br>
<br>
<br>
</div>Do not use that trick, is pretty outdated and incredibly ugly.<br>
<br>
Just let uWSGI do the SCRIPT_NAME rewrite, add the --manage-script-name to<br>
the option (be sure to use the --mount way for loading moinmoin). The<br>
nginx configuration will be simply<br>
<br>
<br>
location /wiki {<br>
    include uwsgi_params;<br>
    uwsgi_pass ...;<br>
}<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Roberto De Ioris<br>
<a href="http://unbit.it" target="_blank">http://unbit.it</a><br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</font></span></blockquote></div><br></div>