Added new post

This commit is contained in:
Tristan Ancelet 2023-09-05 21:31:11 -05:00
parent 804cdf676a
commit d663bb0af2
2 changed files with 14 additions and 9 deletions

View File

@ -37,19 +37,20 @@ I had a backup DNS server as well, but after looking into the VM (that was still
<p>
Here is the commands it did to whitelist DNS (running firewalld as a device side firewall)
</p>
<blockquote>
<pre bash>
firewall-cmd --perm --zone=public --add-service=dns
</blockquote>
<blockquote>
firewall-cmd --reload
</blockquote>
</pre>
<p>
After checking that DNS was resolving with dig, I was able to visit my site with no more issues.
</p>
<blockquote>
<pre bash>
dig blog.tristanancelet.com
</blockquote>
</pre>
</body>
</html>

View File

@ -17,12 +17,16 @@ 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
}}}
After checking that DNS was resolving with dig, I was able to visit my site with no more issues.
{{{bash
dig blog.tristanancelet.com
}}}