~linuxgoose/bocpress

ref: 998269312d17fad056e8960a12a1a33f49aeff70 bocpress/main/templates/main/guides_customdomain.html -rw-r--r-- 1.2 KiB
99826931Jordan Robinson update post detail page for tag query param on url 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends 'main/layout.html' %}

{% load static %}

{% block title %}Custom Domain Guide{% endblock %}

{% block content %}
<main>
    <h1>Custom Domain Guide</h1>
    <p>
        We offer custom domains with managed TLS (https) to users who pay for the
        Premium Plan.
    </p>

    <h2>Set up</h2>
    <p>
        Add an A record in your domain's DNS settings with IP:
    </p>
    <div>
        <code>95.217.30.133</code>
    </div>

    <h2>Notes</h2>
    <p>
        We only support <strong>one domain</strong>. This means that we cannot
        auto-redirect a naked domain (e.g. example.com) to its www version (i.e.
        www.example.com). To do this, you would need to choose one version and then
        host/serve/create some kind of redirect mechanism for the other version.
    </p>
    <p>
        If you use <strong>Cloudflare</strong>, take care to have "Proxied" turned
        off. This means that the setting should be in mode "DNS Only".
    </p>
    <p>
        Other things to try: dig, online DNS lookup tools, private/incognito mode,
        different browser, different computer/phone.
    </p>
</main>

{% include 'partials/footer.html' %}

{% endblock content %}