diff --git a/www/owncloud/Makefile b/www/owncloud/Makefile index dda1d216c6a..6bd1583fccb 100644 --- a/www/owncloud/Makefile +++ b/www/owncloud/Makefile @@ -1,12 +1,13 @@ -# $OpenBSD: Makefile,v 1.124 2018/05/22 06:57:44 gonzalo Exp $ +# $OpenBSD: Makefile,v 1.125 2018/05/22 07:19:07 ajacoutot Exp $ COMMENT= easy and universal access to shared and/or personal files V= 10.0.8 -REVISION= 0 DISTNAME= owncloud-${V} EXTRACT_SUFX= .tar.bz2 +REVISION= 1 + CATEGORIES= www HOMEPAGE= http://owncloud.org/ diff --git a/www/owncloud/pkg/README b/www/owncloud/pkg/README index 79f2d8a8862..2c476db5cab 100644 --- a/www/owncloud/pkg/README +++ b/www/owncloud/pkg/README @@ -1,4 +1,4 @@ -$OpenBSD: README,v 1.49 2018/05/22 06:57:44 gonzalo Exp $ +$OpenBSD: README,v 1.50 2018/05/22 07:19:07 ajacoutot Exp $ +----------------------------------------------------------------------- | Running ${FULLPKGNAME} on OpenBSD @@ -26,19 +26,16 @@ configuration page and logs: OpenBSD HTTP daemon ------------------- -httpd(8) example configuration for owncloud: - -ext_if="egress" - -types { include "/usr/share/misc/mime.types" } +httpd(8) example configuration for ownCloud: +---8<--------------------------------------------------------------------------- server "domain.tld" { - listen on $ext_if tls port 443 + listen on egress tls port 443 - tls { - certificate "/etc/ssl/acme/domain.tld_fullchain.pem" - key "/etc/ssl/acme/private/domain.tld_private.pem" - } + tls { + certificate "/etc/ssl/domain.tld_fullchain.pem" + key "/etc/ssl/private/domain.tld_private.pem" + } # First deny access to the specified files location "/db_structure.xml" { block } @@ -71,6 +68,7 @@ server "domain.tld" { root { "/owncloud", strip 1 } } } +---8<--------------------------------------------------------------------------- nginx -----