From 9ce84714cde4a970c54eff783e7d9044307ddde1 Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Thu, 2 May 2019 18:08:10 -0700 Subject: [PATCH 1/3] Update cryptocoin addresses We no longer have access to the old coinbase account. Updating to new Coinbase Commerce account. --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index c0f413ca..98a28a93 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,7 @@ Make no mistake: **your support is absolutely vital to help keep us innovating!* Sending a donation using our links below is **extremely helpful** in offsetting a portion of our monthly expenses: - PP Donate via PayPal
-- BTC [Bitcoin](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): -3MDPzjXu2hjw5sGLJvKUi1uXbvQPzVrbpF
-- BTC [Bitcoin Cash](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): qzqsz4aju2eecc6uhs7tus4vlwhhela24sdruf4qp5
-- BTC [Ethereum](https://commerce.coinbase.com/checkout/fb7facaf-bebd-46be-bb77-b358f4546763): 0x79d4e90A4a0C732819526c93e21A3F1356A2FAe1 +- BTC [Bitcoin, Bitcoin Cash, Ethereum, Litecoin](https://commerce.coinbase.com/checkout/dd304d04-f324-4a77-931b-0db61c77a41b) ### Alternative support If you'd rather not [donate](https://pi-hole.net/donate/) (_which is okay!_), there are other ways you can help support us: From ecc49318f06e7bbfa868053904f736737f109ac6 Mon Sep 17 00:00:00 2001 From: RamSet Date: Mon, 24 Jun 2019 12:38:03 -0600 Subject: [PATCH 2/3] Fixed MIME related issue present in lighttpd/1.4.53 Signed-off-by: RamSet --- advanced/lighttpd.conf.debian | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/advanced/lighttpd.conf.debian b/advanced/lighttpd.conf.debian index d9c4a110..73833caa 100644 --- a/advanced/lighttpd.conf.debian +++ b/advanced/lighttpd.conf.debian @@ -44,9 +44,19 @@ static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) compress.cache-dir = "/var/cache/lighttpd/compress/" compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" ) +mimetype.assign = ( ".png" => "image/png", + ".jpg" => "image/jpeg", + ".jpeg" => "image/jpeg", + ".html" => "text/html", + ".css" => "text/css; charset=utf-8", + ".js" => "application/javascript", + ".json" => "application/json", + ".txt" => "text/plain", + ".svg" => "image/svg+xml" ) + # default listening port for IPv6 falls back to the IPv4 port include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port -include_shell "/usr/share/lighttpd/create-mime.assign.pl" +#include_shell "/usr/share/lighttpd/create-mime.assign.pl" # Prevent Lighttpd from enabling Let's Encrypt SSL for every blocked domain #include_shell "/usr/share/lighttpd/include-conf-enabled.pl" From b5af125be6fcda97d4d0381e99c1edb0e5423606 Mon Sep 17 00:00:00 2001 From: RamSet Date: Tue, 25 Jun 2019 10:06:37 -0600 Subject: [PATCH 3/3] Removed line Signed-off-by: RamSet --- advanced/lighttpd.conf.debian | 1 - 1 file changed, 1 deletion(-) diff --git a/advanced/lighttpd.conf.debian b/advanced/lighttpd.conf.debian index 73833caa..47bdbee0 100644 --- a/advanced/lighttpd.conf.debian +++ b/advanced/lighttpd.conf.debian @@ -56,7 +56,6 @@ mimetype.assign = ( ".png" => "image/png", # default listening port for IPv6 falls back to the IPv4 port include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port -#include_shell "/usr/share/lighttpd/create-mime.assign.pl" # Prevent Lighttpd from enabling Let's Encrypt SSL for every blocked domain #include_shell "/usr/share/lighttpd/include-conf-enabled.pl"