1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00

updated readme

This commit is contained in:
postmannen 2021-12-07 16:17:10 +01:00
parent f32f42d2ce
commit ca207dd0be
2 changed files with 7 additions and 23 deletions

View file

@ -6,22 +6,10 @@ You can run each script individually, or you can use one of the wrapper scripts.
## Setup
### Create LetsEncrypt certificate
Create a directory where you want your docker compose files, and enter that directory
First we need to create the LetsEncrypt certificates. We do that with <https://github.com/RaaLabs/certupdater>. To build the docker container certupdater follow the instructions in it's README.md file.
To create the certificates for your domain you will need to have your domain registered at your current public IP with your provider, and have forwarded port tcp/80 and tcp/443 to the host you are running the scripts on.
The command to generate the scripts are:
```bash
docker run -it --rm -v '<path to current folder here>:/certs/:rw' -p 80:80 -p 443:443 -e DAEMON=false -e USER_FOLDER=/certs -e PROD=true -e DOMAIN=my.super.cool.domain.com certupdater:0.1.0
```
### Generate docker-compose files
Create a directory where you want your docker compose files, and enter that directory.
Clone the steward repository:
```bash
@ -32,14 +20,10 @@ git clone https://github.com/RaaLabs/steward.git
Execute the wrapper script with the following arguments:
`./steward/scripts/nats-server/wrapper.sh <LetsEncrypt Cert file> <LetsEncrypt Key file> <nats-server listen port>`
```bash
./steward/scripts/nats-server/wrapper.sh ../some/dir/le.crt ../some/dir/le.key 50222
```
`./steward/scripts/nats-server/wrapper.sh <fqdn of nats server> <nats-server listen port>`
This will create all files needed, but you need to add user configuration to the **nats.conf** file manually.
A template for the central steward instance are added by default, but **you need** to edit the file and replace the **`FILL-IN...`** fields with your central user key, and **organization name** according to the naming you want to use as node names. **Read more about the naming in the main README.md.**
**NB**: LetsEncrypt certificate can be generated by using <https://github.com/RaaLabs/certupdater>
**NB**: LetsEncrypt certificate are generated by using <https://github.com/RaaLabs/certupdater>, and it need to be present on the host where this wrapper script is run. The certupdater contains a Dockerfile and instruction for how to build it.

View file

@ -2,9 +2,9 @@
## docker-compose
Create a directory where you want your docker compose files, and enter that directory
Clone the steward repository:
Create a directory where you want your docker compose files, and enter that directory.
Clone the steward repository:
```bash
mkdir my_dir