Howtos/Serving from your home folder on nginx
< Howtos
(Redirected from Serving from your home folder on nginx)location ~ ^/~(.+?)(/.*)?$ {
alias /home/$1/public_html$2;
index index.html;
}
location ~ ^/~(.+?)(/.*)?$ {
alias /home/$1/public_html$2;
index index.html;
}