blob: 52a3b1eb91335f38a414b680202a889ecf4c08a0 (
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.1
package() {
preamble
depends+=(
config-mgmt-nginx
config-mgmt-certbot
)
add-file -m755 etc/ssl/misc/certbot-get.d/10-projects <<EOF
#!/bin/bash
echo projects.{parabola.nu,parabolagnulinux.org}
EOF
add-file etc/nginx/sites/alias-projects_parabola_nu.conf <<EOF
# -*- Mode: nginx; nginx-indent-level: 8; indent-tabs-mode: t -*-
server {
server_name projects.parabola.nu;
listen 443 ssl http2;
listen [::]:443 ssl http2;
location / { return 301 https://git.parabola.nu\$request_uri; }
}
EOF
postamble
}
|