<p dir="ltr"><br>
On May 24, 2014 2:53 PM, "luc2" <<a href="mailto:nginx-forum@nginx.us">nginx-forum@nginx.us</a>> wrote:<br>
><br>
> nginx rewrites :<br>
><br>
> > <a href="http://localhost:8081/files">http://localhost:8081/files</a><br>
><br>
> to :<br>
><br>
> > <a href="http://localhost:81/files/">http://localhost:81/files/</a> # wrong port !<br>
><br>
> while apache rewrites :<br>
><br>
> > <a href="http://localhost:8082/files">http://localhost:8082/files</a><br>
><br>
> to<br>
><br>
> > <a href="http://localhost:8082/files/">http://localhost:8082/files/</a><br>
><br>
> is it possible to configure nginx to behave like apache ?<br>
><br>
> /etc/nginx/conf.d/test.conf :<br>
><br>
> > server {<br>
> >     listen       81;<br>
> >     location /files {<br>
> >         alias /home/luc2/files;<br>
> >         autoindex on;<br>
> >     }<br>
> > }<br>
><br>
> /etc/httpd/conf.d/test.conf :<br>
><br>
> > <VirtualHost *:82><br>
> >     Alias /files /home/luc2/files<br>
> >     <Directory /home/luc2/files><br>
> >             Options indexes<br>
> >             Allow from all<br>
> >     </Directory><br>
> > </VirtualHost><br>
><br>
> Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,250338,250338#msg-250338">http://forum.nginx.org/read.php?2,250338,250338#msg-250338</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">http://mailman.nginx.org/mailman/listinfo/nginx</a></p>
<p dir="ltr">Aliases (and any other configurable sharing a name with something in Apache) generally don't do the same thing as in Apache. Just use "root" inside the location block.<br><br></p>
<p dir="ltr">Dustin</p>