summaryrefslogtreecommitdiff
path: root/config-service-config.PKGBUILD
blob: d9d91f9b43936efda0019379b8e254f9de3ff2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
. ${BUILDFILE%/*}/common.sh
pkgver=20161111.3

package() {
preamble

depends+=(nginx config-mgmt-certbot)

add-file -m755 etc/ssl/misc/certbot-get.d/10-config <<EOF
#!/bin/bash
echo config.{parabola.nu,parabolagnulinux.org}
EOF

add-file etc/nginx/sites/server-config_parabola_nu.conf <<EOF
# -*- Mode: nginx; nginx-indent-level: 8; indent-tabs-mode: t -*-

server {
	server_name config.parabola.nu;
	listen 443 ssl http2;
	listen [::]:443 ssl http2;

	error_log  /var/log/nginx/nginx.http.config_parabola_nu.error.log  error;
	access_log /var/log/nginx/nginx.http.config_parabola_nu.access.log specific;

	autoindex on;
}
EOF

postamble
}