-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🥑 new Pi log, updating links & CSS tweaks
- wrote a new Pi log, `Messy Pi` - updated links so they link to the pages moved to the `pages` folder - formatted unordered lists and list items in CSS - removed link to `Are you lonely?` because it is not ready
- Loading branch information
1 parent
1f5cf18
commit c7a5a6a
Showing
5 changed files
with
85 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
RewriteEngine On | ||
RewriteBase / | ||
|
||
# Rewrite cosy.website/pagename to cosy.website/pages/pagename | ||
RewriteCond %{DOCUMENT_ROOT}/pages/%{REQUEST_URI} -f | ||
RewriteRule ^(.*)$ /pages/$1 [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Messy Pi</title> | ||
<link rel="stylesheet" href="/assets/css/reset.css"> | ||
</head> | ||
<header> | ||
</header> | ||
<main> | ||
|
||
<body> | ||
<date>24.12.2024</date> | ||
<p>I think I need to start keeping a technical log of my Pi happenings. I make notes in Obsidian but I'm still | ||
confused about the concept of links, tags and folders.</p> | ||
<p>Things I would record are:</p> | ||
<ul> | ||
<li>issues</li> | ||
<li>attempted resolutions</li> | ||
<li>succesful resolutions</li> | ||
<li>links resources and references used</li> | ||
<li>added services and software</li> | ||
<li>removed services and software</li> | ||
</ul> | ||
<p>Okay, this is just git commits. Maybe I should setup a private repo so I have version control for the Pi setups | ||
and won't have to nuke everything when I break it.</p> | ||
<p>This is the short list of Pi happenings today:</p> | ||
<ul> | ||
<li>continued setting up YunoHost on piBo</li> | ||
<li>tried to connect umm.lol to piBo</li> | ||
<li>umm.lol was loading a deleted, offline Homer dashboard but in a private browser it was loading <a | ||
href="https://cosy.website">cosy.website</a></li> | ||
<li>purging the Cloudflare cache for umm.lol stopped the Homer dashboard from loading</li> | ||
<li>currently umm.lol is still loading <a href="https://cosy.website">cosy.website</a></li> | ||
<li>when it does this the URL is https://umm.lol</li> | ||
<li>there is no valid SSL cert but the SSL cert for <a href="https://cosy.website">cosy.website</a> is listed</li> | ||
<li>remembered that I setup an Application Gateway through Cloudflare for umm.lol</li> | ||
<li>deleted Application Gateway</li> | ||
</ul> | ||
<p>Issues to try and fix next time:</p> | ||
<ul> | ||
<li>connect umm.lol to YunoHost</li> | ||
<li>resolve issues appearing in YunoHost diagnosis (DNS, port exposure, HTTP access and email)</li> | ||
<li>work out best way to manage port forwarding on my modem (Sagemcom 5366 TN)</li> | ||
</ul> | ||
</body> | ||
</main> | ||
<footer><a class="back" href="/pages/pi-log.html">Back to Pi Log</a></footer> | ||
|
||
</html> |