I'm the one to blame...thanks for reverting!<br><br>Fabio<br><div class="gmail_quote"><div dir="ltr">On Tue, 9 Oct 2018 at 11:23 am, Tobias Pape <<a href="mailto:Das.Linux@gmx.de">Das.Linux@gmx.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
Someone put this line into /etc/nginx/sites-enabled/filessqueakorg.conf<br>
<br>
        rewrite ^/trunk$ /5.2beta permanent;<br>
<br>
Please please please do not do this.<br>
<br>
First, "permanent" makes it near impossible to redirect trunk to something else than /5.2beta (because clients won't even bother requesting /trunk anymore),<br>
Second, "^/trunk$" will rewrite <a href="http://files.squeak.org/trunk" rel="noreferrer" target="_blank">files.squeak.org/trunk</a> but NOT <a href="http://files.squeak.org/trunk/" rel="noreferrer" target="_blank">files.squeak.org/trunk/</a> (which we link from <a href="http://squeak.org" rel="noreferrer" target="_blank">squeak.org</a>…).<br>
Third, /5.2beta is wrong and should be rc1 now.<br>
<br>
The correct way is this:<br>
<br>
        cd /var/www/<a href="http://files.squeak.org" rel="noreferrer" target="_blank">files.squeak.org</a><br>
        rm -f trunk<br>
        ln -s 5.2rc1 trunk<br>
<br>
And _not_ change the config.<br>
<br>
I fixed it.<br>
<br>
Thanks.<br>
        -Tobias<br>
<br>
</blockquote></div>