List alphabetically and removes the duplicates lines from Bruno Flueckiger

Thanks!
This commit is contained in:
gonzalo 2019-03-11 12:59:56 +00:00
parent 2dc994ab32
commit 4d6c6fc914
2 changed files with 16 additions and 19 deletions

View File

@ -1,10 +1,11 @@
# $OpenBSD: Makefile,v 1.34 2019/03/05 08:54:40 gonzalo Exp $
# $OpenBSD: Makefile,v 1.35 2019/03/11 12:59:56 gonzalo Exp $
COMMENT= easy and universal access to shared and/or personal files
V= 15.0.5
DISTNAME= nextcloud-${V}
EXTRACT_SUFX= .tar.bz2
REVISION= 0
CATEGORIES= www

View File

@ -1,4 +1,4 @@
$OpenBSD: README,v 1.10 2018/12/09 14:06:26 ajacoutot Exp $
$OpenBSD: README,v 1.11 2019/03/11 12:59:57 gonzalo Exp $
+-----------------------------------------------------------------------
| Running ${PKGSTEM} on OpenBSD
@ -28,7 +28,7 @@ The HTTP server must be able to resolve hostnames:
The configuration of an SQLite database path is set relatively to the chroot in
Nextcloud which will break background jobs run by cron(8) (see below).
A symlink can be created to workaround this issue:
# ln -f ${TINSTDIR) /nextcloud
# ln -f ${INSTDIR) /nextcloud
OpenBSD HTTP daemon
-------------------
@ -49,26 +49,22 @@ server "domain.tld" {
}
# First deny access to the specified files
location "/db_structure.xml" { block }
location "/.ht*" { block }
location "/README" { block }
location "/data*" { block }
location "/config*" { block }
location "/build*" { block }
location "/tests*" { block }
location "/config*" { block }
location "/lib*" { block }
location "/3rdparty*" { block }
location "/templates*" { block }
location "/data*" { block }
location "/.ht*" { block }
location "/.user*" { block }
location "/3rdparty*" { block }
location "/README" { block }
location "/autotest*" { block }
location "/occ*" { block }
location "/issue*" { block }
location "/indie*" { block }
location "/db_*" { block }
location "/build*" { block }
location "/config*" { block }
location "/console*" { block }
location "/data*" { block }
location "/db_*" { block }
location "/indie*" { block }
location "/issue*" { block }
location "/lib*" { block }
location "/occ*" { block }
location "/templates*" { block }
location "/tests*" { block }
location "/*.php*" {
root "/nextcloud"