2020-12-16 12:57:28 +03:00
|
|
|
|
<div class="max-w-md w-full mx-auto bg-white dark:bg-gray-800 shadow-md rounded px-8 pt-6 pb-8 mb-4 mt-8">
|
|
|
|
|
<h2 class="text-xl font-black dark:text-gray-100">DNS for <%= @site.custom_domain.domain %></h2>
|
2020-03-06 12:11:38 +03:00
|
|
|
|
<ol class="list-disc pl-4 my-4">
|
2020-12-16 12:57:28 +03:00
|
|
|
|
<li class="dark:text-gray-100">Go to your DNS provider’s website</li>
|
|
|
|
|
<li class="mt-4 dark:text-gray-100">Create a new CNAME record for <code><%= @site.custom_domain.domain %></code></li>
|
|
|
|
|
<li class="mt-4 dark:text-gray-100">Point the record to <code>custom.<%= base_domain() %>.</code> (including the dot)</li>
|
|
|
|
|
<li class="mt-4 dark:text-gray-100">If you're using Cloudflare, make sure to disable the orange cloud proxy:</li>
|
2020-09-10 11:30:57 +03:00
|
|
|
|
<%= img_tag(Routes.static_path(@conn, "/images/cloudflare_orange_cloud.png"), class: "w-36 my-4 inline") %>
|
2020-12-16 12:57:28 +03:00
|
|
|
|
<span class="text-lg font-bold dark:text-gray-100">→</span>
|
2020-09-10 11:30:57 +03:00
|
|
|
|
<%= img_tag(Routes.static_path(@conn, "/images/cloudflare_gray_cloud.png"), class: "w-36 my-4 inline") %>
|
2020-02-26 11:54:21 +03:00
|
|
|
|
</ol>
|
|
|
|
|
|
2020-12-16 12:57:28 +03:00
|
|
|
|
<%= link("Done →", to: "/sites/#{URI.encode_www_form(@site.domain)}/custom-domains/snippet", class: "button w-full mt-6") %>
|
2020-05-28 10:41:09 +03:00
|
|
|
|
</div>
|