Regenerated index

This commit is contained in:
Tristan Ancelet 2023-09-05 21:39:53 -05:00
parent 7d79fa5cc3
commit 34dc5f675f
5 changed files with 23 additions and 15 deletions

View File

@ -39,9 +39,8 @@ Here is the commands it did to whitelist DNS (running firewalld as a device side
</p>
<pre bash>
firewall-cmd --perm --zone=public --add-service=dns
firewall-cmd --reload
firewall-cmd --perm --zone=public --add-service=dns
firewall-cmd --reload
</pre>
<p>
@ -49,7 +48,7 @@ After checking that DNS was resolving with dig, I was able to visit my site with
</p>
<pre bash>
dig blog.tristanancelet.com
dig blog.tristanancelet.com
</pre>
</body>

View File

@ -20,10 +20,17 @@
<hr />
</p>
<p>
<a href="blog-issue.html">Blog Issue (2023/09/05)</a>
<a href="hello-world.html">Hello World (2023/09/02)</a>
</p>
<ul>
<li>
<a href="blog-issue.html">Blog Issue (2023/09/05)</a>
</ul>
<ul>
<li>
<a href="hello-world.html">Hello World (2023/09/02)</a>
</ul>
</body>
</html>

View File

@ -18,15 +18,14 @@ I had a backup DNS server as well, but after looking into the VM (that was still
Here is the commands it did to whitelist DNS (running firewalld as a device side firewall)
{{{bash
firewall-cmd --perm --zone=public --add-service=dns
firewall-cmd --reload
firewall-cmd --perm --zone=public --add-service=dns
firewall-cmd --reload
}}}
After checking that DNS was resolving with dig, I was able to visit my site with no more issues.
{{{bash
dig blog.tristanancelet.com
dig blog.tristanancelet.com
}}}

View File

@ -7,6 +7,7 @@
## Blog Posts
-------------
[[blog-issue.wiki|Blog Issue (2023/09/05)]]
[[hello-world.wiki|Hello World (2023/09/02)]]
- [[blog-issue.wiki|Blog Issue (2023/09/05)]]
- [[hello-world.wiki|Hello World (2023/09/02)]]

View File

@ -40,6 +40,8 @@ echo $TITLES
*Date:* `date +'%Y/%m/%d'`
*Author:* Tristan Ancelet
= $PAGE_TITLE =
EOF
return 0
@ -69,7 +71,7 @@ for file in ${blog_files[@]}; do
FILENAME="$(basename $file)"
DATE="$(grep -i 'date:' $file | grep -Eo '[0-9]{4}/[0-9]{2}/[0-9]{2}')"
echo "[[$FILENAME|$TITLE ($DATE)]]"
echo -e "- [[$FILENAME|$TITLE ($DATE)]] \n"
done
`