carlessanagustin
3/11/2015 - 10:12 AM

Nginx simplified

Nginx simplified

server {
        listen 80;
        charset utf-8;
        
        server_name your-site.com www.your-site.com;
        #index index.html index.htm;

        # myApp at port 8010
        location /myApp {
                return 301 http://$host:8010$request_uri;
        }

        # list folder /home/user/web
        location /web {
                root /home/user;
                try_files $uri $uri/ =404;
                autoindex on;
        }
}