> This is my nginx setup:
>
> location / {
> alias /var/www/blog/;
> }
>
> location /blog {
> root /var/www;
> index index.html index.htm;
> }
>
Your config file is incorrect.
I would do something like:
server {
listen 80;
location / {
root /var/www/blog;
index index.html index.htm;
}
}
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx