commit 85ee220d457c4fae38fba6d8e050c11421e631bf
parent 79ddfa79f8c52d34be3150fc2c83025610448236
Author: Shipwreckt <shipwreckt@mailfence.com>
Date: Wed, 18 Sep 2024 20:53:38 +0100
School fixed + one new post
Diffstat:
6 files changed, 64 insertions(+), 1 deletion(-)
diff --git a/public/Images/logos/pihole.png b/public/Images/logos/pihole.png
Binary files differ.
diff --git a/public/index.html b/public/index.html
@@ -27,6 +27,8 @@
<section class="posts">
<h2>Posts</h2>
<ul>
+ <li>18-09-2024 - <a href="posts/12Pihole">Pihole on Arch server</a></li>
+ <li>18-09-2024 - <a href="posts/11School">School</a></li>
<li>31-08-2024 - <a href="posts/10Gentoo">Installing Gentoo Linux</a></li>
<li>28-08-2024 - <a href="posts/09Kernel">Compiling the Linux Kernel 🐧</a></li>
<li>26-08-2024 - <a href="posts/08ArchServer">Arch server!</a></li>
diff --git a/public/posts/12Pihole b/public/posts/12Pihole
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html lang="en-GB">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="author" content="Shipwreckt">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Pi-hole</title>
+ <link rel="stylesheet" href="../styles.css">
+ <link rel="icon" href="../Images/favi.png" type="image/x-icon">
+ </head>
+ <body>
+ <header>
+ <nav>
+ <ul>
+ <li><a href="../index.html">Home</a></li>
+ <li><a href="../links.html">Links</a></li>
+ <li><a href="../projects.html">Projects</a></li>
+ <li><a href="../contact.html">Contact</a></li>
+ </ul>
+ </nav>
+ </header>
+ <main>
+ <h2>Pi-hole</h2>
+ <h3>Date: 18-09-2024</h3><hr>
+ <p>Been rather busy with school lately but I still have time to tinker!</p>
+
+ <h2>What is Pi-hole ?</h2>
+ <img class="right-image" width="200" src="../Images/logos/pihole.png">
+ <p><a href="https://pi-hole.net/">Pi-hole</a> is a DNS sinkhole that can be used with your router to protect your other devices without installing any client-side software. For the most part, Pi-hole is used for only blocking ads, but there is more you can do with it, for example, logging internet activity and blocking websites.
+
+ <h2>benefits of using Pi-Hole</h2>
+ <ul>
+ <li>Network wide adblocker</li>
+ <li>Saves bandwith due to adblocker</li>
+ <li>Adblocker on all mobile apps</li>
+ <li><b>Free of cost</b></li>
+ <li>Can function as a DHCP server</li>
+ <li>Easy-to-install</li>
+ </ul><hr>
+
+ <h2>Installing</h2>
+ <p>Since I'm using Arch Linux as my server OS, the only real option I had was to use the <a href="https://github.com/pi-hole/docker-pi-hole">Docker container</a>. It was relatively easy to install, though I did encounter some issues, mostly due to me not reading what to do. Overall, I'd say it was easy to set up and configure for all my devices to use.</p>
+
+ <h2>Blocklist</h2>
+ <p>I have a number of websites blocked to avoid visiting suspicious sites or being tracked. The best source for blocklists from what I can tell is <a href="https://firebog.net/">Firebog</a>. I recommend using only the lists marked in <span style="color: green;">green</span>, as those coloured <span style="color: blue;">blue</span> are either no longer maintained or may interfere with your normal day to day web browsing. Additionally I would just add the top three lists from each category to cover a good enought basis.</p>
+
+ <hr>
+ <h2>Last thoughts</h2>
+ <p>I really do like Pi-hole and I see myself using it for the forseeable future as it just does a whole bunch of intresting bits that help me be more secure online.</p>
+
+
+
+ <center><hr>
+ <pre><a href="../index.html">Back 🚪</a> | <a href="tags/Linux">More Linux 🐧</a> | <a href="tags/Tech">More Tech 🧑💻</a></pre>
+ </center>
+ </main>
+ </body>
+</html>
+
diff --git a/public/posts/tags/Linux b/public/posts/tags/Linux
@@ -24,6 +24,7 @@
<center>
<h1>Linux 🐧</h1>
</center>
+ <p>18-09-2024 - <a href="../12Pihole">Pihole on Arch server</a></p>
<p>31-08-2024 - <a href="../10Gentoo">Installing Gentoo Linux</a></p>
<p>28-08-2024 - <a href="..//09Kernel">Compiling the Linux Kernel 🐧</a></p>
<p>26-08-2024 - <a href="../08ArchServer">Arch Server!</a></p>
diff --git a/public/posts/tags/Tech b/public/posts/tags/Tech
@@ -24,6 +24,7 @@
<center>
<h1>Tech 🧑💻</h1>
</center>
+ <p>18-09-2024 - <a href="../12Pihole">Pihole on Arch server</a></p>
<p>31-08-2024 - <a href="../10Gentoo">Installing Gentoo Linux</a></p>
<p>28-08-2024 - <a href="..//09Kernel">Compiling the Linux Kernel 🐧</a></p>
<p>26-08-2024 - <a href="../08ArchServer">Arch Server!</a></p>
diff --git a/public/styles.css b/public/styles.css
@@ -54,7 +54,7 @@ main{
.tags {
margin: 20px auto;
font-size: 18px;
- max-width: 33%;
+ max-width: 40%;
padding: 0 10px;
}