All pastes #2067491 Raw Edit

Miscellany

public text v1 · immutable
#2067491 ·published 2011-05-23 10:31 UTC
rendered paste body
server {
        root foo;

        location ~ /sites/(?<domain>.+)/(?<uri_part>.+) {
                try_files $uri @redirect;
        }

        location @redirect {
                rewrite ^ http://$domain/$uri_part permanent;
        }
}