Add bare beginnings to server hosting guide/blog posts
parent
8fb106ff43
commit
192cbf9cd5
@ -0,0 +1,69 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="To avoid using an IP, this guide will help you point your domain name at your server.">
|
||||||
|
<meta name="keywords" content="Blog, articles, news, DNS, domain, server">
|
||||||
|
<meta name="author" content="Nathan (Aney) Steel">
|
||||||
|
<meta name="theme-color" content="white">
|
||||||
|
<meta name="theme-color" content="black">
|
||||||
|
<link rel="stylesheet" type="text/css" href="/main.css">
|
||||||
|
<link rel="icon" type="image/png" href="/images/favicon.svg">
|
||||||
|
<title>Link your domain name to your server</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>Link your domain name to your server</h1>
|
||||||
|
<hr/>
|
||||||
|
<nav>
|
||||||
|
<a href="/">home</a>
|
||||||
|
<a href="/equipment.html">equipment</a>
|
||||||
|
<a href="/projects.html">projects</a>
|
||||||
|
<a href="/blog/">blog</a>
|
||||||
|
<a href="/sitemap.html">misc</a>
|
||||||
|
<a href="/support.html">support</a>
|
||||||
|
</nav>
|
||||||
|
<hr/>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<p class="intro">To avoid needing to remember an IP, this guide will help to link your domain name to your server.</p>
|
||||||
|
<h2>Login to your domain name registrar</h2>
|
||||||
|
<p>Login to the registrar, and select the domain name you want to point at your server.</p>
|
||||||
|
|
||||||
|
<h2>Find the section for DNS</h2>
|
||||||
|
<p>The domain name should have a section named, "DNS", "Custom DNS records", or something similar to this. Find, and open it, there should be a bunch of boxes and an option to add a new record</p>
|
||||||
|
|
||||||
|
<h2>Add the A record</h2>
|
||||||
|
<p>There will likely be many option for adding records, but all we need is to add a singular A record</p>
|
||||||
|
<p>Find the box that allows you to "Add a new record" and input the below, changing <IP> and <DOMAIN> with your IP address, and domain name</p>
|
||||||
|
<pre>
|
||||||
|
<code>
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p>If there are not multiple boxes, but instead a single box to input your record into, this will be what you add instead</p>
|
||||||
|
<pre>
|
||||||
|
<code>
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<h2>Wait for propagation</h2>
|
||||||
|
<p>Now there's a bit of a waiting game, as you need to wait for the new DNS record to propagate (get updated) for all nameservers. This can be anywhere from instantly to 72 hours, but typically takes an hour or two.</p>
|
||||||
|
|
||||||
|
<h3>Check your domain has propagated</h3>
|
||||||
|
<p>Pinging the domain name will let you know when the IP has propagated, as when the ping command shows your IP, you're all set</p>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<hr/>
|
||||||
|
<p>Written by <a href="http://www.aney.co.uk" target="_blank" rel="noopener">@aney</a> with <a href="https://danluu.com/web-bloat/" target="_blank" rel="noopener">web bloat</a> in mind | <a href="https://github.com/Aney/website" target="_blank" rel="noopener">Source Code</a></p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
Loading…
Reference in New Issue