Skip to content

Instantly share code, notes, and snippets.

@Fastidious
Last active October 4, 2017 11:35
Show Gist options
  • Save Fastidious/f69f23fadcd40114dc3d to your computer and use it in GitHub Desktop.
Save Fastidious/f69f23fadcd40114dc3d to your computer and use it in GitHub Desktop.
Tilde style user directory on nginx

This will allow tilde style user directory on nginx:

location ~ ^/~(.+?)(/.*)?$ {
    alias /home/$1/www$2;
    autoindex on;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment