GitBook: [master] 7 pages and 16 assets modified

This commit is contained in:
Daniel Farina 2018-07-11 03:45:02 +00:00 committed by gitbook-bot
parent 0e847837a7
commit 3a4e8e0876
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF
22 changed files with 120 additions and 1 deletions

BIN
.gitbook/assets/addkey.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
.gitbook/assets/image.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -6,5 +6,9 @@
* [Getting the Xpub from an Electrum Wallet](cloud-hosted-guide/create-a-new-wallet-with-the-electrum-wallet.md)
* [Create a BTCP Pay Button](cloud-hosted-guide/create-a-btcp-pay-button.md)
* [Accessing Wallet with Electrum](cloud-hosted-guide/accessing-wallet-with-electrum.md)
* [Self Hosted Guide](self-hosted-guide.md)
* [Self Hosted Guide](self-hosted-guide/README.md)
* [Getting Started](self-hosted-guide/getting-started.md)
* [Digital Ocean Server Setup](self-hosted-guide/digital-ocean-server-setup.md)
* [Connecting to your Server](self-hosted-guide/connecting-to-your-server.md)
* [Bitcore Installation](self-hosted-guide/bitcore-installation.md)

View File

@ -0,0 +1,2 @@
# Bitcore Installation

View File

@ -0,0 +1,16 @@
# Connecting to your Server
## Copy the IP from your Droplet
![](../.gitbook/assets/image%20%283%29.png)
## Connect using your favorite SSH Terminal.
For this example we will use MobaXterm on Windows. Start a new SSH session, enter the IP, username \(root\) and load your key. Then enter your passphrase from the previous step when asked. You are now logged in to your Digital Ocean Droplet.
![](../.gitbook/assets/loginserver.gif)

View File

@ -0,0 +1,83 @@
# Digital Ocean Server Setup
## Creating a new Droplet
Login to your Digital Ocean account and click create then select Droplet.
![](../.gitbook/assets/image%20%288%29.png)
Choose an Image. BTCP is currently optimize to run on Ubuntu with 2 GB of memory for $10/month.
![](../.gitbook/assets/image%20%282%29.png)
Choose a location closer to where most of your buyers are from.
![](../.gitbook/assets/image%20%289%29.png)
Select IPv6 and Monitoring.
![](../.gitbook/assets/image%20%2810%29.png)
## Add your SSH Key to allow remote login to this server.
If you don't have a public SSH key on your computer you can generate one using the following tools:
{% tabs %}
{% tab title="Linux" %}
```text
ssh-keygen
```
{% endtab %}
{% tab title="Windows" %}
Download Git
"**Git bash** " is a msys shell included in "Git for Windows" software. It will allow you to generate pairs of public and private keys to be used to login to your Droplet.
Download GIT from here:
{% embed data="{\"url\":\"https://git-scm.com/downloads\",\"type\":\"link\",\"title\":\"Git - Downloads\",\"icon\":{\"type\":\"icon\",\"url\":\"https://git-scm.com/favicon.ico\",\"aspectRatio\":0}}" %}
## RUNNING PUTTYGEN
Go to Windows **Start menu** type Git Bash
![](../.gitbook/assets/image%20%2811%29.png)
Run the following command and follow the prompts
```text
ssh-keygen
```
![](../.gitbook/assets/image.png)
Enter a name for your keys, then enter a passphrase, they will be saved on your user folder ~/ by default. Its a good practice to move them to ~/.ssh
Copy the Public key \(The file that ends in .pub\) will be required for the next step.
{% hint style="info" %}
Public key is the shorter one. Starts with ssh-rsa
{% endhint %}
{% endtab %}
{% tab title="Max" %}
{% endtab %}
{% endtabs %}
## Add your SSH Key
Add your SSH key from the previous step.
![](../.gitbook/assets/addkey.gif)
## Finalize
Enter a name and create click create
![](../.gitbook/assets/image%20%286%29.png)

View File

@ -0,0 +1,14 @@
# Getting Started
## Purpose of this guide
There are several ways to create a personal Bitcore dedicated instance for processing your BTCP payments online. This guide will cover the setup on a Digital Ocean Droplet & an AWS instance and the installation of Bitcore. If you already have a server running with Ubuntu on Digital Ocean or AWS you can jump to the installation guide.
Once you have Bitcore running you will be able to connect to it to process payments which we will cover in other chapters.
{% hint style="info" %}
DigitalOcean calls its cloud servers Droplets; each Droplet you create is a new server for your personal use.
{% endhint %}
##