Howtos/Serving from your home folder on nginx

From creative crowd wiki
Jump to navigation Jump to search
location ~ ^/~(.+?)(/.*)?$ {
    alias /home/$1/public_html$2;
    index index.html;
}