Big pipe server/Services/nginx
From Whitespace (Hackerspace Gent)
< Big pipe server | Services(Difference between revisions)
| Line 5: | Line 5: | ||
# simulate Apache UserDir behaviour. | # simulate Apache UserDir behaviour. | ||
# http://wiki.nginx.org/UserDir | # http://wiki.nginx.org/UserDir | ||
| − | location ~ ^/~( | + | location ~ ^/~?([A-Za-z0-9]+?)(/.*)?$ { |
alias /home/$1/public_html$2; | alias /home/$1/public_html$2; | ||
index index.html index.htm; | index index.html index.htm; | ||
Latest revision as of 01:55, 24 August 2011
- Config at /etc/nginx/
- Virtualhost in sites-enabled/0x20-default
- simulate Apache UserDir behaviour so users can use ~/public_html to serve files:
# simulate Apache UserDir behaviour.
# http://wiki.nginx.org/UserDir
location ~ ^/~?([A-Za-z0-9]+?)(/.*)?$ {
alias /home/$1/public_html$2;
index index.html index.htm;
autoindex on;
}
- SSL uses CAcert (www.cacert.org). SSL config in sites-enabled/0x20-default