Few tweaks and fix tabs versus spaces.

This commit is contained in:
ajacoutot 2018-05-22 07:19:07 +00:00
parent 0e8cc6c8a8
commit 81097daadb
2 changed files with 12 additions and 13 deletions

View File

@ -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/

View File

@ -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
-----