I use wsvn on my svn subdomain. Nginx doesn’t have real support for this, but there is a way to sorta do this. First we set this in our / location:
1 2 3 4 5 6 7 |
#Sorta emulate multiviews. set $path_info ""; if ($uri ~ "^/wsvn/(.+)$") { set $path_info "/$1"; rewrite ^(.+)$ /wsvn.php?$1 last; } |
Now I just need to let fastcgi know this. My fast cgi params are in their own file, but this is the only …