mirror of
https://github.com/linuxserver/docker-swag.git
synced 2026-06-02 23:46:39 +09:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 410fa0515e | |||
| e1ece8ac1c | |||
| d33df2224b | |||
| 3b98b3ae65 | |||
| af6a3a2163 | |||
| 7a8a360746 | |||
| f467b9539b | |||
| 3aae7b50d9 | |||
| 98e22cb66d |
@@ -2,8 +2,8 @@ NAME VERSION TYPE
|
||||
Simple Launcher 1.1.0.14 dotnet (+5 duplicates)
|
||||
acl-libs 2.3.2-r1 apk
|
||||
acme 3.0.1 python
|
||||
alpine-baselayout 3.6.8-r0 apk
|
||||
alpine-baselayout-data 3.6.8-r0 apk
|
||||
alpine-baselayout 3.6.8-r1 apk
|
||||
alpine-baselayout-data 3.6.8-r1 apk
|
||||
alpine-keys 2.5-r0 apk
|
||||
alpine-release 3.21.0-r0 apk
|
||||
aom-libs 3.11.0-r0 apk
|
||||
@@ -22,16 +22,16 @@ azure-mgmt-dns 8.2.0 python
|
||||
backports-tarfile 1.2.0 python
|
||||
bash 5.2.37-r0 apk
|
||||
beautifulsoup4 4.12.3 python
|
||||
boto3 1.35.91 python
|
||||
botocore 1.35.91 python
|
||||
boto3 1.35.93 python
|
||||
botocore 1.35.93 python
|
||||
brotli-libs 1.1.0-r2 apk
|
||||
bs4 0.0.2 python
|
||||
busybox 1.37.0-r9 apk
|
||||
busybox-binsh 1.37.0-r9 apk
|
||||
c-ares 1.34.3-r0 apk
|
||||
c-client 2007f-r15 apk
|
||||
ca-certificates 20241010-r0 apk
|
||||
ca-certificates-bundle 20241010-r0 apk
|
||||
ca-certificates 20241121-r0 apk
|
||||
ca-certificates-bundle 20241121-r0 apk
|
||||
cachetools 5.5.0 python
|
||||
catatonit 0.2.0-r0 apk
|
||||
certbot 3.0.1 python
|
||||
@@ -336,7 +336,7 @@ requests-mock 1.12.1 python
|
||||
rsa 4.9 python
|
||||
s3transfer 0.10.4 python
|
||||
scanelf 1.3.8-r1 apk
|
||||
setuptools 75.6.0 python
|
||||
setuptools 75.7.0 python
|
||||
shadow 4.16.0-r1 apk
|
||||
six 1.17.0 python
|
||||
skalibs-libs 2.14.3.0-r0 apk
|
||||
|
||||
@@ -11,3 +11,9 @@ if [[ -f /config/nginx/ldap.conf ]]; then
|
||||
Ensure your configs are updated and remove /config/nginx/ldap.conf
|
||||
If you do not use this config, simply remove it."
|
||||
fi
|
||||
if grep -qrle ' /etc/letsencrypt' /config/nginx; then
|
||||
echo " The following nginx confs are using certificates from the obsolete location
|
||||
/etc/letsencrypt and should be updated to point to /config/etc/letsencrypt
|
||||
"
|
||||
echo -n " " && grep -rle ' /etc/letsencrypt' /config/nginx
|
||||
fi
|
||||
|
||||
Executable
+7
@@ -0,0 +1,7 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
# shellcheck shell=bash
|
||||
|
||||
# Migrate existing renewal confs with old paths from /etc/letsencrypt to /config/etc/letsencrypt
|
||||
if ls /config/etc/letsencrypt/renewal/*.conf >/dev/null 2>&1; then
|
||||
sed -i 's| /etc/letsencrypt| /config/etc/letsencrypt|' /config/etc/letsencrypt/renewal/*.conf
|
||||
fi
|
||||
Reference in New Issue
Block a user