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