On Tue, Jul 17, 2018 at 09:27:43AM +0200, Clemens Gößnitzer wrote: > www/nextcloud still has "root strip 1" in README for httpd.conf example Thanks. Since you are changing the package's content, do note that this warrants a REVISION bump.
> --- ports/www/nextcloud/pkg/README.orig 2018-07-17 09:21:51.171310863 +0200 > +++ ports/www/nextcloud/pkg/README 2018-07-17 09:22:21.211676159 +0200 > @@ -62,7 +62,8 @@ > location "/console*" { block } > > location "/*.php*" { > - root { "/nextcloud", strip 1 } > + root "/nextcloud" > + request strip 1 > fastcgi socket "/run/php-fpm.sock" > } That turns it into the exact two lines which are used in the next `location "/*"' block as well. Would it be worth to somehow combine these? Just wondering.