Hi, I used the script 'setup-web2py-nginx-uwsgi-ubuntu.sh' to configure my server.
But now when I go to http://myserver.com, it automatically redirect me to http://myserver.com/welcome Now I want to configure apache to map http://MYAPP.domain.com/ to http://myserver.com/MYAPP. So I think I have to use mod_alias, Im right ? This doesnt work : <VirtualHost *:80> ServerName MYAPP.domain.com Alias / /MYAPP </VirtualHost> Thank you