|
1 | 1 | # How to change the domain name of your BTCPay Server
|
2 | 2 |
|
3 |
| -This article assume you know the following information: |
| 3 | +This article assumes you used either [Azure](https://github.com/btcpayserver/btcpayserver-azure) deployment or [BTCPay Docker](https://github.com/btcpayserver/btcpayserver-docker) deployment. |
4 | 4 |
|
5 |
| -* The SSH username and password of your server |
6 |
| -* That you used either [Azure](https://github.com/btcpayserver/btcpayserver-azure) deployment or [BTCPay Docker](https://github.com/btcpayserver/btcpayserver-docker) deployment. |
7 |
| - |
8 |
| -Let's assume I used `Azure` deployment, on which I get an invalid certificate: |
| 5 | +Let's assume I used Azure. After initially deploying, I get an invalid certificate (this is normal during setup): |
9 | 6 |
|
10 | 7 | 
|
11 | 8 |
|
12 | 9 | To get a valid certificate, I need to change my server address from `https://myawesomedemobtcpay.westeurope.cloudapp.azure.com/` to `https://tothemoon.btcpayserver.com/`.
|
13 | 10 |
|
14 |
| -## Pre-requisite |
| 11 | +## Setting up your DNS record |
15 | 12 |
|
16 |
| -### Setting up your DNS record |
17 |
| -First I bought my domain name `btcpayserver.com` to a registar. (I use [gandi.net](https://gandi.net/) because they are awesome) |
| 13 | +First, I bought my domain name `btcpayserver.com` from a registar. (I use [gandi.net](https://gandi.net/) because they are awesome.) |
18 | 14 |
|
19 | 15 | Once I got the domain name, I can access it in the `Domains` menu:
|
20 | 16 |
|
21 | 17 | 
|
22 | 18 |
|
23 |
| -So I click on my new domain `btcpayserver.com`, then go to the `DNS Record` menu, then I click `Add`. |
| 19 | +So I click on my new domain `btcpayserver.com`, then go to the `DNS Records` menu, then I click `Add`: |
24 | 20 |
|
25 | 21 | 
|
26 | 22 |
|
27 |
| -Here I want to make sure `tothemoon.btcpayserver.com` will resolve to the same IP address as `myawesomedemobtcpay.westeurope.cloudapp.azure.com`. We call this a `CNAME record`: |
| 23 | +Here I want to make sure `tothemoon.btcpayserver.com` will resolve to the same IP address as `myawesomedemobtcpay.westeurope.cloudapp.azure.com`. We call this a `CNAME record`. |
| 24 | + |
| 25 | +So I fill out: |
28 | 26 |
|
29 |
| -So I fill out |
30 | 27 | ```
|
31 | 28 | Type: "CNAME",
|
32 | 29 | Name: "tothemoon",
|
33 |
| -Hostname: "myawesomedemobtcpay.westeurope.cloudapp.azure.com." DO NOT FORGET THE '.' |
| 30 | +Hostname: "myawesomedemobtcpay.westeurope.cloudapp.azure.com." !! DO NOT FORGET THE '.' !! |
34 | 31 | ```
|
35 |
| - |
36 | 32 |
|
37 |
| -Then I click `Create`. Note that if you want to point to an IP address instead, you would use a type `A` record. |
38 |
| - |
39 |
| -Congratulation! Now let's |
| 33 | + |
40 | 34 |
|
41 |
| -## From your BTCPay Server |
| 35 | +Then I click 'Create'. (Note that if you want to point directly to an IP address instead, you would use a type `A` record.) |
42 | 36 |
|
43 |
| -First, I go to `https://myawesomedemobtcpay.westeurope.cloudapp.azure.com/server/maintenance`. |
44 |
| -I must be logged as an administrator, which is typically the first account created on the server. |
| 37 | +**Congratulations! Now let's set it up on the other side, the BTCPayServer host.** |
45 | 38 |
|
46 |
| -I enter my SSH `Username` (by default on azure, `btcpayserver`) and `Password` I chose during the Azure Wizard setup. |
| 39 | +## From your browser |
47 | 40 |
|
48 |
| -Then I enter my domain name `tothemoon.btcpayserver.com`, and click confirm. |
| 41 | +* Visit `https://myawesomedemobtcpay.westeurope.cloudapp.azure.com/server/maintenance` |
| 42 | +* Log in as an administrator, which is typically the first account created on the server. |
| 43 | +* Enter new hostname `tothemoon.btcpayserver.com` and click 'Confirm'. |
49 | 44 |
|
50 | 45 | 
|
51 | 46 |
|
52 |
| -I wait a bit and go to `https://tothemoon.btcpayserver.com/`, Success! |
| 47 | +I wait a bit and go to `https://tothemoon.btcpayserver.com` - Success! |
53 | 48 |
|
54 | 49 | 
|
55 | 50 |
|
56 |
| -## From command line |
| 51 | +## From the command line |
57 | 52 |
|
58 | 53 | I connect to my server via:
|
59 | 54 |
|
60 | 55 | ```bash
|
61 | 56 |
|
62 | 57 | ```
|
| 58 | + |
63 | 59 | I enter the `Password` I chose during the Azure Wizard setup.
|
64 | 60 |
|
65 | 61 | ```bash
|
|
0 commit comments