Recent content by Dirk

  1. D

    userdir php

    Hi, For some domains I need to use /~username. It came to my attention that this isn't possible by default in nginx. So I started googling a bit and found some easy code to make it work. /~username works: location ~ ^/~([^/]+)(/.*)?$ { alias /home/$1/public_html$2; autoindex on; } Then I...
Back
Top