Compare commits

..

16 Commits

Author SHA1 Message Date
LinuxServer-CI
61a5c40902 Bot Updating Package Versions 2021-02-10 15:54:58 +00:00
aptalca
0a32a84d8a Merge pull request #80 from linuxserver/master-3.13
Rebase to 3.13, add brotli and dav-ext, remove lua
2021-02-10 10:35:03 -05:00
aptalca
e7b5816304 enable rust for py crypto 2021-02-10 09:52:09 -05:00
aptalca
b71f99cb7b Merge branch 'master' into master-3.13 2021-02-10 09:51:11 -05:00
aptalca
9074cf2d44 I like to copy pasta 2021-02-09 11:23:08 -05:00
aptalca
479ee5eac1 add brotli and dav-ext, remove lua 2021-02-09 10:50:54 -05:00
LinuxServer-CI
d7ce59b839 Bot Updating Package Versions 2021-02-09 05:59:41 -05:00
Roxedus
69fdcc1ff3 Merge pull request #79 from linuxserver/crypt
avoid rust for py crypto
2021-02-09 11:48:06 +01:00
aptalca
00484f51d8 avoid rust for py crypto 2021-02-08 21:57:15 -05:00
aptalca
363ba433cc Merge branch 'master' into master-3.13 2021-02-08 17:14:52 -05:00
aptalca
de98308c70 add cargo/rust to fix cryptography builds 2021-02-08 16:06:12 -05:00
aptalca
db657fa06a Merge pull request #67 from linuxserver/hetzner
add support for hetzner dns validation
2021-01-27 10:29:09 -05:00
aptalca
6f25f82996 add support for hetzner dns validation 2021-01-26 18:11:44 -05:00
thelamer
ea8b193858 Rebasing to Alpine 3.13 2021-01-23 15:13:00 -08:00
aptalca
d5c8106aac Merge pull request #61 from linuxserver/typo
fix typo
2021-01-23 17:22:09 -05:00
aptalca
cd5f29a8b0 fix typo 2021-01-23 15:49:03 -05:00
9 changed files with 206 additions and 187 deletions

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.12 FROM ghcr.io/linuxserver/baseimage-alpine-nginx:3.13
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@@ -14,6 +14,7 @@ ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \ apk add --no-cache --virtual=build-dependencies \
cargo \
g++ \ g++ \
gcc \ gcc \
libffi-dev \ libffi-dev \
@@ -26,13 +27,13 @@ RUN \
gnupg \ gnupg \
memcached \ memcached \
nginx \ nginx \
nginx-mod-http-brotli \
nginx-mod-http-dav-ext \
nginx-mod-http-echo \ nginx-mod-http-echo \
nginx-mod-http-fancyindex \ nginx-mod-http-fancyindex \
nginx-mod-http-geoip2 \ nginx-mod-http-geoip2 \
nginx-mod-http-headers-more \ nginx-mod-http-headers-more \
nginx-mod-http-image-filter \ nginx-mod-http-image-filter \
nginx-mod-http-lua \
nginx-mod-http-lua-upstream \
nginx-mod-http-nchan \ nginx-mod-http-nchan \
nginx-mod-http-perl \ nginx-mod-http-perl \
nginx-mod-http-redis2 \ nginx-mod-http-redis2 \
@@ -104,6 +105,7 @@ RUN \
certbot-dns-dnsmadeeasy \ certbot-dns-dnsmadeeasy \
certbot-dns-domeneshop \ certbot-dns-domeneshop \
certbot-dns-google \ certbot-dns-google \
certbot-dns-hetzner \
certbot-dns-inwx \ certbot-dns-inwx \
certbot-dns-linode \ certbot-dns-linode \
certbot-dns-luadns \ certbot-dns-luadns \

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.12 FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm64v8-3.13
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@@ -14,6 +14,7 @@ ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \ apk add --no-cache --virtual=build-dependencies \
cargo \
g++ \ g++ \
gcc \ gcc \
libffi-dev \ libffi-dev \
@@ -26,13 +27,13 @@ RUN \
gnupg \ gnupg \
memcached \ memcached \
nginx \ nginx \
nginx-mod-http-brotli \
nginx-mod-http-dav-ext \
nginx-mod-http-echo \ nginx-mod-http-echo \
nginx-mod-http-fancyindex \ nginx-mod-http-fancyindex \
nginx-mod-http-geoip2 \ nginx-mod-http-geoip2 \
nginx-mod-http-headers-more \ nginx-mod-http-headers-more \
nginx-mod-http-image-filter \ nginx-mod-http-image-filter \
nginx-mod-http-lua \
nginx-mod-http-lua-upstream \
nginx-mod-http-nchan \ nginx-mod-http-nchan \
nginx-mod-http-perl \ nginx-mod-http-perl \
nginx-mod-http-redis2 \ nginx-mod-http-redis2 \
@@ -104,6 +105,7 @@ RUN \
certbot-dns-dnsmadeeasy \ certbot-dns-dnsmadeeasy \
certbot-dns-domeneshop \ certbot-dns-domeneshop \
certbot-dns-google \ certbot-dns-google \
certbot-dns-hetzner \
certbot-dns-inwx \ certbot-dns-inwx \
certbot-dns-linode \ certbot-dns-linode \
certbot-dns-luadns \ certbot-dns-luadns \

View File

@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm32v7-3.12 FROM ghcr.io/linuxserver/baseimage-alpine-nginx:arm32v7-3.13
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@@ -14,6 +14,7 @@ ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \ apk add --no-cache --virtual=build-dependencies \
cargo \
g++ \ g++ \
gcc \ gcc \
libffi-dev \ libffi-dev \
@@ -26,13 +27,13 @@ RUN \
gnupg \ gnupg \
memcached \ memcached \
nginx \ nginx \
nginx-mod-http-brotli \
nginx-mod-http-dav-ext \
nginx-mod-http-echo \ nginx-mod-http-echo \
nginx-mod-http-fancyindex \ nginx-mod-http-fancyindex \
nginx-mod-http-geoip2 \ nginx-mod-http-geoip2 \
nginx-mod-http-headers-more \ nginx-mod-http-headers-more \
nginx-mod-http-image-filter \ nginx-mod-http-image-filter \
nginx-mod-http-lua \
nginx-mod-http-lua-upstream \
nginx-mod-http-nchan \ nginx-mod-http-nchan \
nginx-mod-http-perl \ nginx-mod-http-perl \
nginx-mod-http-redis2 \ nginx-mod-http-redis2 \
@@ -104,6 +105,7 @@ RUN \
certbot-dns-dnsmadeeasy \ certbot-dns-dnsmadeeasy \
certbot-dns-domeneshop \ certbot-dns-domeneshop \
certbot-dns-google \ certbot-dns-google \
certbot-dns-hetzner \
certbot-dns-inwx \ certbot-dns-inwx \
certbot-dns-linode \ certbot-dns-linode \
certbot-dns-luadns \ certbot-dns-luadns \

View File

@@ -142,7 +142,7 @@ Container images are configured using parameters passed at runtime (such as thos
| `-e SUBDOMAINS=www,` | Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this _exactly_ to `wildcard` (wildcard cert is available via `dns` and `duckdns` validation only) | | `-e SUBDOMAINS=www,` | Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this _exactly_ to `wildcard` (wildcard cert is available via `dns` and `duckdns` validation only) |
| `-e VALIDATION=http` | Certbot validation method to use, options are `http`, `dns` or `duckdns` (`dns` method also requires `DNSPLUGIN` variable set) (`duckdns` method requires `DUCKDNSTOKEN` variable set, and the `SUBDOMAINS` variable must be either empty or set to `wildcard`). | | `-e VALIDATION=http` | Certbot validation method to use, options are `http`, `dns` or `duckdns` (`dns` method also requires `DNSPLUGIN` variable set) (`duckdns` method requires `DUCKDNSTOKEN` variable set, and the `SUBDOMAINS` variable must be either empty or set to `wildcard`). |
| `-e CERTPROVIDER=` | Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt. | | `-e CERTPROVIDER=` | Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt. |
| `-e DNSPLUGIN=cloudflare` | Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `gehirn`, `google`, `inwx`, `linode`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`. | | `-e DNSPLUGIN=cloudflare` | Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `gehirn`, `google`, `hetzner`, `inwx`, `linode`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`. |
| `-e PROPAGATION=` | Optionally override (in seconds) the default propagation time for the dns plugins. | | `-e PROPAGATION=` | Optionally override (in seconds) the default propagation time for the dns plugins. |
| `-e DUCKDNSTOKEN=` | Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org | | `-e DUCKDNSTOKEN=` | Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org |
| `-e EMAIL=` | Optional e-mail address used for cert expiration notifications (Required for ZeroSSL). | | `-e EMAIL=` | Optional e-mail address used for cert expiration notifications (Required for ZeroSSL). |
@@ -326,6 +326,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions ## Versions
* **09.02.21:** - Rebasing to alpine 3.13. Add nginx mods brotli and dav-ext. Remove nginx mods lua and lua-upstream (due to regression over the last couple of years).
* **26.01.21:** - Add support for hetzner dns validation.
* **20.01.21:** - Add check for ZeroSSL EAB retrieval. * **20.01.21:** - Add check for ZeroSSL EAB retrieval.
* **08.01.21:** - Add support for getting certs from [ZeroSSL](https://zerossl.com/) via optional `CERTPROVIDER` env var. Update aliyun, domeneshop, inxw and transip dns plugins with the new plugin names. Hide `donoteditthisfile.conf` because users were editing it despite its name. Suppress harmless error when no proxy confs are enabled. * **08.01.21:** - Add support for getting certs from [ZeroSSL](https://zerossl.com/) via optional `CERTPROVIDER` env var. Update aliyun, domeneshop, inxw and transip dns plugins with the new plugin names. Hide `donoteditthisfile.conf` because users were editing it despite its name. Suppress harmless error when no proxy confs are enabled.
* **03.01.21:** - [Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) /config/nginx/site-confs/default - Add helper pages to aid troubleshooting * **03.01.21:** - [Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) /config/nginx/site-confs/default - Add helper pages to aid troubleshooting

View File

@@ -1,220 +1,220 @@
alpine-baselayout-3.2.0-r7 alpine-baselayout-3.2.0-r8
alpine-keys-2.2-r0 alpine-keys-2.2-r0
apache2-utils-2.4.46-r1 apache2-utils-2.4.46-r3
apk-tools-2.10.5-r1 apk-tools-2.12.1-r0
apr-1.7.0-r0 apr-1.7.0-r0
apr-util-1.6.1-r6 apr-util-1.6.1-r7
argon2-libs-20190702-r1 argon2-libs-20190702-r1
bash-5.0.17-r0 bash-5.1.0-r0
brotli-libs-1.0.9-r1 brotli-libs-1.0.9-r3
busybox-1.31.1-r19 busybox-1.32.1-r2
c-client-2007f-r11 c-client-2007f-r11
ca-certificates-20191127-r4 ca-certificates-20191127-r5
ca-certificates-bundle-20191127-r4 ca-certificates-bundle-20191127-r5
coreutils-8.32-r0 coreutils-8.32-r2
curl-7.69.1-r3 curl-7.74.0-r0
db-5.3.28-r1 expat-2.2.10-r1
expat-2.2.9-r1 fail2ban-0.11.1-r4
fail2ban-0.11.1-r3 freetype-2.10.4-r1
freetype-2.10.4-r0 gdbm-1.19-r0
gdbm-1.13-r1 git-2.30.0-r0
git-2.26.2-r0 glib-2.66.4-r0
git-perl-2.26.2-r0 gmp-6.2.1-r0
glib-2.64.6-r0 gnupg-2.2.27-r0
gmp-6.2.0-r0 gnutls-3.7.0-r0
gnupg-2.2.23-r0 icu-libs-67.1-r2
gnutls-3.6.15-r0 ip6tables-1.8.6-r0
icu-libs-67.1-r0 iptables-1.8.6-r0
ip6tables-1.8.4-r2
iptables-1.8.4-r2
libacl-2.2.53-r0 libacl-2.2.53-r0
libassuan-2.5.3-r0 libassuan-2.5.4-r0
libattr-2.4.48-r0 libattr-2.4.48-r0
libblkid-2.35.2-r0 libblkid-2.36.1-r1
libbsd-0.10.0-r0 libbsd-0.10.0-r0
libbz2-1.0.8-r1 libbz2-1.0.8-r1
libc-utils-0.7.2-r3 libc-utils-0.7.2-r3
libcap-2.27-r0 libcap-2.46-r0
libcrypto1.1-1.1.1i-r0 libcrypto1.1-1.1.1i-r0
libcurl-7.69.1-r3 libcurl-7.74.0-r0
libedit-20191231.3.1-r0 libedit-20191231.3.1-r1
libevent-2.1.11-r1 libevent-2.1.12-r1
libffi-3.3-r2 libffi-3.3-r2
libgcc-9.3.0-r2 libgcc-10.2.1_pre1-r3
libgcrypt-1.8.5-r0 libgcrypt-1.8.7-r0
libgd-2.3.0-r1 libgd-2.3.0-r2
libgpg-error-1.37-r0 libgpg-error-1.41-r0
libice-1.0.10-r0 libice-1.0.10-r0
libidn-1.35-r0 libidn-1.35-r0
libintl-0.20.2-r0 libintl-0.20.2-r2
libjpeg-turbo-2.0.5-r0 libjpeg-turbo-2.0.6-r0
libksba-1.4.0-r0 libksba-1.5.0-r0
libldap-2.4.50-r1 libldap-2.4.56-r0
libmagic-5.38-r0 libmagic-5.39-r0
libmaxminddb-1.4.3-r0 libmaxminddb-1.5.0-r0
libmcrypt-2.5.8-r8 libmcrypt-2.5.8-r9
libmemcached-libs-1.0.18-r4 libmemcached-libs-1.0.18-r4
libmnl-1.0.4-r0 libmnl-1.0.4-r1
libmount-2.35.2-r0 libmount-2.36.1-r1
libnftnl-libs-1.1.6-r0 libnftnl-libs-1.1.8-r0
libpng-1.6.37-r1 libpng-1.6.37-r1
libpq-12.5-r0 libpq-13.1-r2
libproc-3.3.16-r0 libproc-3.3.16-r0
libressl3.1-libcrypto-3.1.2-r0 libressl3.1-libcrypto-3.1.5-r0
libressl3.1-libssl-3.1.2-r0 libressl3.1-libssl-3.1.5-r0
libsasl-2.1.27-r6 libsasl-2.1.27-r10
libseccomp-2.4.3-r0 libseccomp-2.5.1-r0
libsecret-0.20.3-r0 libsecret-0.20.4-r0
libsm-1.2.3-r0 libsm-1.2.3-r0
libsodium-1.0.18-r0 libsodium-1.0.18-r0
libssl1.1-1.1.1i-r0 libssl1.1-1.1.1i-r0
libstdc++-9.3.0-r2 libstdc++-10.2.1_pre1-r3
libtasn1-4.16.0-r1 libtasn1-4.16.0-r1
libtls-standalone-2.9.1-r1 libtls-standalone-2.9.1-r1
libunistring-0.9.10-r0 libunistring-0.9.10-r0
libuuid-2.35.2-r0 libuuid-2.36.1-r1
libwebp-1.1.0-r0 libwebp-1.1.0-r0
libx11-1.6.12-r0 libx11-1.7.0-r0
libxau-1.0.9-r0 libxau-1.0.9-r0
libxcb-1.14-r1 libxcb-1.14-r1
libxdmcp-1.1.3-r0 libxdmcp-1.1.3-r0
libxext-1.3.4-r0 libxext-1.3.4-r0
libxml2-2.9.10-r5 libxml2-2.9.10-r6
libxpm-3.5.13-r0 libxpm-3.5.13-r0
libxslt-1.1.34-r0 libxslt-1.1.34-r0
libxt-1.2.0-r0 libxt-1.2.1-r0
libzip-1.6.1-r1 libzip-1.7.3-r2
linux-pam-1.3.1-r4 linux-pam-1.5.1-r0
logrotate-3.16.0-r0 logrotate-3.18.0-r0
luajit-5.1.20190925-r0 lz4-libs-1.9.2-r0
memcached-1.6.6-r0 memcached-1.6.9-r0
musl-1.1.24-r10 musl-1.2.2-r0
musl-utils-1.1.24-r10 musl-utils-1.2.2-r0
nano-4.9.3-r0 nano-5.4-r1
ncurses-libs-6.2_p20200523-r0 ncurses-libs-6.2_p20210109-r0
ncurses-terminfo-base-6.2_p20200523-r0 ncurses-terminfo-base-6.2_p20210109-r0
nettle-3.5.1-r1 nettle-3.7-r0
nghttp2-libs-1.41.0-r0 nghttp2-libs-1.42.0-r1
nginx-1.18.0-r1 nginx-1.18.0-r13
nginx-mod-devel-kit-1.18.0-r1 nginx-mod-devel-kit-1.18.0-r13
nginx-mod-http-echo-1.18.0-r1 nginx-mod-http-brotli-1.18.0-r13
nginx-mod-http-fancyindex-1.18.0-r1 nginx-mod-http-dav-ext-1.18.0-r13
nginx-mod-http-geoip2-1.18.0-r1 nginx-mod-http-echo-1.18.0-r13
nginx-mod-http-headers-more-1.18.0-r1 nginx-mod-http-fancyindex-1.18.0-r13
nginx-mod-http-image-filter-1.18.0-r1 nginx-mod-http-geoip2-1.18.0-r13
nginx-mod-http-lua-1.18.0-r1 nginx-mod-http-headers-more-1.18.0-r13
nginx-mod-http-lua-upstream-1.18.0-r1 nginx-mod-http-image-filter-1.18.0-r13
nginx-mod-http-nchan-1.18.0-r1 nginx-mod-http-nchan-1.18.0-r13
nginx-mod-http-perl-1.18.0-r1 nginx-mod-http-perl-1.18.0-r13
nginx-mod-http-redis2-1.18.0-r1 nginx-mod-http-redis2-1.18.0-r13
nginx-mod-http-set-misc-1.18.0-r1 nginx-mod-http-set-misc-1.18.0-r13
nginx-mod-http-upload-progress-1.18.0-r1 nginx-mod-http-upload-progress-1.18.0-r13
nginx-mod-http-xslt-filter-1.18.0-r1 nginx-mod-http-xslt-filter-1.18.0-r13
nginx-mod-mail-1.18.0-r1 nginx-mod-mail-1.18.0-r13
nginx-mod-rtmp-1.18.0-r1 nginx-mod-rtmp-1.18.0-r13
nginx-mod-stream-1.18.0-r1 nginx-mod-stream-1.18.0-r13
nginx-mod-stream-geoip2-1.18.0-r1 nginx-mod-stream-geoip2-1.18.0-r13
nginx-vim-1.18.0-r1 nginx-vim-1.18.0-r13
npth-1.6-r0 npth-1.6-r0
oniguruma-6.9.6-r0
openssl-1.1.1i-r0 openssl-1.1.1i-r0
p11-kit-0.23.22-r0 p11-kit-0.23.22-r0
pcre-8.44-r0 pcre-8.44-r0
pcre2-10.35-r0 pcre2-10.36-r0
perl-5.30.3-r0 perl-5.32.0-r0
perl-error-0.17029-r0 php7-7.4.15-r0
perl-git-2.26.2-r0 php7-bcmath-7.4.15-r0
php7-7.3.26-r0 php7-bz2-7.4.15-r0
php7-bcmath-7.3.26-r0 php7-common-7.4.15-r0
php7-bz2-7.3.26-r0 php7-ctype-7.4.15-r0
php7-common-7.3.26-r0 php7-curl-7.4.15-r0
php7-ctype-7.3.26-r0 php7-dom-7.4.15-r0
php7-curl-7.3.26-r0 php7-exif-7.4.15-r0
php7-dom-7.3.26-r0 php7-fileinfo-7.4.14-r0
php7-exif-7.3.26-r0 php7-fpm-7.4.14-r0
php7-fileinfo-7.3.26-r0 php7-ftp-7.4.15-r0
php7-fpm-7.3.26-r0 php7-gd-7.4.15-r0
php7-ftp-7.3.26-r0 php7-iconv-7.4.15-r0
php7-gd-7.3.26-r0 php7-imap-7.4.15-r0
php7-iconv-7.3.26-r0 php7-intl-7.4.15-r0
php7-imap-7.3.26-r0 php7-json-7.4.15-r0
php7-intl-7.3.26-r0 php7-ldap-7.4.15-r0
php7-json-7.3.26-r0 php7-mbstring-7.4.15-r0
php7-ldap-7.3.26-r0 php7-mysqli-7.4.15-r0
php7-mbstring-7.3.26-r0 php7-mysqlnd-7.4.15-r0
php7-mysqli-7.3.26-r0 php7-opcache-7.4.15-r0
php7-mysqlnd-7.3.26-r0 php7-openssl-7.4.15-r0
php7-opcache-7.3.26-r0 php7-pdo-7.4.15-r0
php7-openssl-7.3.26-r0 php7-pdo_mysql-7.4.15-r0
php7-pdo-7.3.26-r0 php7-pdo_odbc-7.4.15-r0
php7-pdo_mysql-7.3.26-r0 php7-pdo_pgsql-7.4.15-r0
php7-pdo_odbc-7.3.26-r0 php7-pdo_sqlite-7.4.15-r0
php7-pdo_pgsql-7.3.26-r0 php7-pear-7.4.15-r0
php7-pdo_sqlite-7.3.26-r0 php7-pecl-apcu-5.1.19-r1
php7-pear-7.3.26-r0 php7-pecl-igbinary-3.2.2_rc1-r0
php7-pecl-apcu-5.1.19-r0 php7-pecl-mcrypt-1.0.4-r0
php7-pecl-igbinary-3.1.6-r0 php7-pecl-memcached-3.1.5-r2
php7-pecl-mcrypt-1.0.3-r0 php7-pecl-redis-5.3.3-r0
php7-pecl-memcached-3.1.5-r0 php7-pgsql-7.4.15-r0
php7-pecl-redis-5.2.2-r1 php7-phar-7.4.15-r0
php7-pgsql-7.3.26-r0 php7-posix-7.4.15-r0
php7-phar-7.3.26-r0 php7-session-7.4.15-r0
php7-posix-7.3.26-r0 php7-simplexml-7.4.14-r0
php7-session-7.3.26-r0 php7-soap-7.4.15-r0
php7-simplexml-7.3.26-r0 php7-sockets-7.4.15-r0
php7-soap-7.3.26-r0 php7-sodium-7.4.15-r0
php7-sockets-7.3.26-r0 php7-sqlite3-7.4.15-r0
php7-sodium-7.3.26-r0 php7-tokenizer-7.4.15-r0
php7-sqlite3-7.3.26-r0 php7-xml-7.4.15-r0
php7-tokenizer-7.3.26-r0 php7-xmlreader-7.4.15-r0
php7-xml-7.3.26-r0 php7-xmlrpc-7.4.15-r0
php7-xmlreader-7.3.26-r0 php7-xmlwriter-7.4.14-r0
php7-xmlrpc-7.3.26-r0 php7-xsl-7.4.15-r0
php7-xmlwriter-7.3.26-r0 php7-zip-7.4.15-r0
php7-xsl-7.3.26-r0 pinentry-1.1.1-r0
php7-zip-7.3.26-r0 popt-1.18-r0
pinentry-1.1.0-r2
popt-1.16-r7
procps-3.3.16-r0 procps-3.3.16-r0
py3-appdirs-1.4.4-r1 py3-appdirs-1.4.4-r1
py3-asn1crypto-1.3.0-r0 py3-asn1crypto-1.4.0-r0
py3-cachecontrol-0.12.6-r0 py3-cachecontrol-0.12.6-r0
py3-certifi-2020.4.5.1-r0 py3-cffi-1.14.4-r0
py3-cffi-1.14.0-r2 py3-chardet-4.0.0-r0
py3-chardet-3.0.4-r4 py3-colorama-0.4.4-r0
py3-colorama-0.4.3-r0
py3-contextlib2-0.6.0-r0 py3-contextlib2-0.6.0-r0
py3-cparser-2.20-r0 py3-cparser-2.20-r0
py3-cryptography-2.9.2-r0 py3-cryptography-3.3.2-r0
py3-distlib-0.3.0-r0 py3-distlib-0.3.1-r1
py3-distro-1.5.0-r1 py3-distro-1.5.0-r1
py3-future-0.18.2-r1 py3-future-0.18.2-r1
py3-html5lib-1.0.1-r4 py3-html5lib-1.1-r0
py3-idna-2.9-r0 py3-idna-3.1-r0
py3-lockfile-0.12.2-r3 py3-lockfile-0.12.2-r3
py3-msgpack-1.0.0-r0 py3-msgpack-1.0.2-r0
py3-ordered-set-4.0.1-r0 py3-ordered-set-4.0.2-r0
py3-packaging-20.4-r0 py3-packaging-20.9-r0
py3-parsing-2.4.7-r0 py3-parsing-2.4.7-r1
py3-pep517-0.8.2-r0 py3-pep517-0.9.1-r0
py3-pip-20.1.1-r0 py3-pip-20.3.4-r0
py3-progress-1.5-r0 py3-progress-1.5-r0
py3-pytoml-0.1.21-r0 py3-pytoml-0.1.21-r0
py3-requests-2.23.0-r0 py3-requests-2.25.1-r1
py3-retrying-1.3.3-r0 py3-retrying-1.3.3-r0
py3-setuptools-47.0.0-r0 py3-setuptools-51.3.3-r0
py3-six-1.15.0-r0 py3-six-1.15.0-r0
py3-toml-0.10.1-r0 py3-toml-0.10.2-r0
py3-urllib3-1.25.9-r0 py3-urllib3-1.26.2-r1
py3-webencodings-0.5.1-r3 py3-webencodings-0.5.1-r3
python3-3.8.5-r0 python3-3.8.7-r0
readline-8.0.4-r0 readline-8.1.0-r0
scanelf-1.2.6-r0 s6-ipcserver-2.10.0.0-r0
scanelf-1.2.8-r0
shadow-4.8.1-r0 shadow-4.8.1-r0
sqlite-libs-3.32.1-r0 skalibs-2.10.0.0-r0
ssl_client-1.31.1-r19 sqlite-libs-3.34.1-r0
tzdata-2020f-r0 ssl_client-1.32.1-r2
unixodbc-2.3.7-r2 tzdata-2021a-r0
whois-5.5.6-r0 unixodbc-2.3.9-r1
utmps-0.1.0.0-r0
whois-5.5.7-r1
xz-5.2.5-r0 xz-5.2.5-r0
xz-libs-5.2.5-r0 xz-libs-5.2.5-r0
zlib-1.2.11-r3 zlib-1.2.11-r3
zstd-libs-1.4.5-r3

View File

@@ -51,7 +51,7 @@ cap_add_param_vars:
opt_param_usage_include_env: true opt_param_usage_include_env: true
opt_param_env_vars: opt_param_env_vars:
- { env_var: "CERTPROVIDER", env_value: "", desc: "Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt." } - { env_var: "CERTPROVIDER", env_value: "", desc: "Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt." }
- { env_var: "DNSPLUGIN", env_value: "cloudflare", desc: "Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `gehirn`, `google`, `inwx`, `linode`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`." } - { env_var: "DNSPLUGIN", env_value: "cloudflare", desc: "Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `gehirn`, `google`, `hetzner`, `inwx`, `linode`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`." }
- { env_var: "PROPAGATION", env_value: "", desc: "Optionally override (in seconds) the default propagation time for the dns plugins." } - { env_var: "PROPAGATION", env_value: "", desc: "Optionally override (in seconds) the default propagation time for the dns plugins." }
- { env_var: "DUCKDNSTOKEN", env_value: "", desc: "Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org" } - { env_var: "DUCKDNSTOKEN", env_value: "", desc: "Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org" }
- { env_var: "EMAIL", env_value: "", desc: "Optional e-mail address used for cert expiration notifications (Required for ZeroSSL)." } - { env_var: "EMAIL", env_value: "", desc: "Optional e-mail address used for cert expiration notifications (Required for ZeroSSL)." }
@@ -151,6 +151,8 @@ app_setup_nginx_reverse_proxy_block: ""
# changelog # changelog
changelogs: changelogs:
- { date: "09.02.21:", desc: "Rebasing to alpine 3.13. Add nginx mods brotli and dav-ext. Remove nginx mods lua and lua-upstream (due to regression over the last couple of years)." }
- { date: "26.01.21:", desc: "Add support for hetzner dns validation." }
- { date: "20.01.21:", desc: "Add check for ZeroSSL EAB retrieval." } - { date: "20.01.21:", desc: "Add check for ZeroSSL EAB retrieval." }
- { date: "08.01.21:", desc: "Add support for getting certs from [ZeroSSL](https://zerossl.com/) via optional `CERTPROVIDER` env var. Update aliyun, domeneshop, inxw and transip dns plugins with the new plugin names. Hide `donoteditthisfile.conf` because users were editing it despite its name. Suppress harmless error when no proxy confs are enabled." } - { date: "08.01.21:", desc: "Add support for getting certs from [ZeroSSL](https://zerossl.com/) via optional `CERTPROVIDER` env var. Update aliyun, domeneshop, inxw and transip dns plugins with the new plugin names. Hide `donoteditthisfile.conf` because users were editing it despite its name. Suppress harmless error when no proxy confs are enabled." }
- { date: "03.01.21:", desc: "[Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) /config/nginx/site-confs/default - Add helper pages to aid troubleshooting" } - { date: "03.01.21:", desc: "[Existing users should update:](https://github.com/linuxserver/docker-swag/blob/master/README.md#updating-configs) /config/nginx/site-confs/default - Add helper pages to aid troubleshooting" }

View File

@@ -0,0 +1,3 @@
# Instructions: https://github.com/ctrlaltcoop/certbot-dns-hetzner
# Replace with your values
dns_hetzner_api_token = nohnah4zoo9Kiejee9aGh0thoopee2sa

View File

@@ -1,4 +1,4 @@
## Version 2020/10/04 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx.conf ## Version 2021/02/09 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx.conf
user abc; user abc;
worker_processes 4; worker_processes 4;
@@ -85,7 +85,7 @@ http {
## ##
include /etc/nginx/conf.d/*.conf; include /etc/nginx/conf.d/*.conf;
include /config/nginx/site-confs/*; include /config/nginx/site-confs/*;
lua_load_resty_core off; #Removed lua. Do not remove this comment
## ##
# Geoip2 config # Geoip2 config

View File

@@ -81,6 +81,12 @@ cp /config/fail2ban/jail.local /etc/fail2ban/jail.local
[[ ! -f /config/www/502.html ]] && [[ ! -f /config/www/502.html ]] &&
cp /defaults/502.html /config/www/502.html cp /defaults/502.html /config/www/502.html
# remove lua bits from nginx.conf if not done before
if ! grep -q '#Removed lua' /config/nginx/nginx.conf; then
echo "Removing lua specific info from nginx.conf"
sed -i 's|\tlua_load_resty_core off;|\t#Removed lua. Do not remove this comment|g' /config/nginx/nginx.conf
fi
# copy pre-generated dhparams or generate if needed # copy pre-generated dhparams or generate if needed
[[ ! -f /config/nginx/dhparams.pem ]] && \ [[ ! -f /config/nginx/dhparams.pem ]] && \
cp /defaults/dhparams.pem /config/nginx/dhparams.pem cp /defaults/dhparams.pem /config/nginx/dhparams.pem
@@ -93,7 +99,7 @@ if ! grep -q 'PARAMETERS' "/config/nginx/dhparams.pem"; then
fi fi
# check to make sure DNSPLUGIN is selected if dns validation is used # check to make sure DNSPLUGIN is selected if dns validation is used
[[ "$VALIDATION" = "dns" ]] && [[ ! "$DNSPLUGIN" =~ ^(aliyun|cloudflare|cloudxns|cpanel|digitalocean|dnsimple|dnsmadeeasy|domeneshop|gandi|gehirn|google|inwx|linode|luadns|netcup|njalla|nsone|ovh|rfc2136|route53|sakuracloud|transip)$ ]] && \ [[ "$VALIDATION" = "dns" ]] && [[ ! "$DNSPLUGIN" =~ ^(aliyun|cloudflare|cloudxns|cpanel|digitalocean|dnsimple|dnsmadeeasy|domeneshop|gandi|gehirn|google|hetzner|inwx|linode|luadns|netcup|njalla|nsone|ovh|rfc2136|route53|sakuracloud|transip)$ ]] && \
echo "Please set the DNSPLUGIN variable to a valid plugin name. See docker info for more details." && \ echo "Please set the DNSPLUGIN variable to a valid plugin name. See docker info for more details." && \
sleep infinity sleep infinity
@@ -207,7 +213,7 @@ if [ "$VALIDATION" = "dns" ]; then
elif [[ "$DNSPLUGIN" =~ ^(google)$ ]]; then elif [[ "$DNSPLUGIN" =~ ^(google)$ ]]; then
if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi
PREFCHAL="--dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.json ${PROPAGATIONPARAM}" PREFCHAL="--dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.json ${PROPAGATIONPARAM}"
elif [[ "$DNSPLUGIN" =~ ^(aliyun|domeneshop|inwx|netcup|njalla|transip)$ ]]; then elif [[ "$DNSPLUGIN" =~ ^(aliyun|domeneshop|hetzner|inwx|netcup|njalla|transip)$ ]]; then
if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi if [ -n "$PROPAGATION" ];then PROPAGATIONPARAM="--dns-${DNSPLUGIN}-propagation-seconds ${PROPAGATION}"; fi
PREFCHAL="-a dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini ${PROPAGATIONPARAM}" PREFCHAL="-a dns-${DNSPLUGIN} --dns-${DNSPLUGIN}-credentials /config/dns-conf/${DNSPLUGIN}.ini ${PROPAGATIONPARAM}"
else else
@@ -255,7 +261,7 @@ if [ ! "$URL" = "$ORIGURL" ] || [ ! "$SUBDOMAINS" = "$ORIGSUBDOMAINS" ] || [ ! "
REV_EAB_CREDS=$(curl -s https://api.zerossl.com/acme/eab-credentials-email --data "email=$ORIGEMAIL") REV_EAB_CREDS=$(curl -s https://api.zerossl.com/acme/eab-credentials-email --data "email=$ORIGEMAIL")
REV_ZEROSSL_EAB_KID=$(echo "$REV_EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_kid'])") REV_ZEROSSL_EAB_KID=$(echo "$REV_EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_kid'])")
REV_ZEROSSL_EAB_HMAC_KEY=$(echo "$REV_EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_hmac_key'])") REV_ZEROSSL_EAB_HMAC_KEY=$(echo "$REV_EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_hmac_key'])")
if [ -z "$REV_ZEROSSL_EAB_KID" ] || or [ -z "$REV_ZEROSSL_EAB_HMAC_KEY" ]; then if [ -z "$REV_ZEROSSL_EAB_KID" ] || [ -z "$REV_ZEROSSL_EAB_HMAC_KEY" ]; then
echo "Unable to retrieve EAB credentials from ZeroSSL. Check the outgoing connections to api.zerossl.com and dns. Sleeping." echo "Unable to retrieve EAB credentials from ZeroSSL. Check the outgoing connections to api.zerossl.com and dns. Sleeping."
sleep infinity sleep infinity
fi fi
@@ -287,7 +293,7 @@ if [ ! -f "/config/keys/letsencrypt/fullchain.pem" ]; then
EAB_CREDS=$(curl -s https://api.zerossl.com/acme/eab-credentials-email --data "email=$EMAIL") EAB_CREDS=$(curl -s https://api.zerossl.com/acme/eab-credentials-email --data "email=$EMAIL")
ZEROSSL_EAB_KID=$(echo "$EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_kid'])") ZEROSSL_EAB_KID=$(echo "$EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_kid'])")
ZEROSSL_EAB_HMAC_KEY=$(echo "$EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_hmac_key'])") ZEROSSL_EAB_HMAC_KEY=$(echo "$EAB_CREDS" | python3 -c "import sys, json; print(json.load(sys.stdin)['eab_hmac_key'])")
if [ -z "$ZEROSSL_EAB_KID" ] || or [ -z "$ZEROSSL_EAB_HMAC_KEY" ]; then if [ -z "$ZEROSSL_EAB_KID" ] || [ -z "$ZEROSSL_EAB_HMAC_KEY" ]; then
echo "Unable to retrieve EAB credentials from ZeroSSL. Check the outgoing connections to api.zerossl.com and dns. Sleeping." echo "Unable to retrieve EAB credentials from ZeroSSL. Check the outgoing connections to api.zerossl.com and dns. Sleeping."
sleep infinity sleep infinity
fi fi