Skip to content

Commit 85b79e1

Browse files
authored
Merge pull request #1 from starters-dev/v0.1.0
v0.1.0
2 parents adce67b + 7a6eff1 commit 85b79e1

25 files changed

+428
-50
lines changed

.env.example

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# [SYSTEM]
2-
DOMAIN_NAME=your-domain.com
3-
DO_AUTH_TOKEN=XXXXXXXXXXXXXXXXX
1+
# [GENERAL]
2+
DOMAIN_NAME=your-website.com
3+
DO_AUTH_TOKEN=xxxxxxxxxxxxxxxxxxxxx # for DNS challenge
4+
ACME_EMAIL=[email protected] # for let's encrypt
5+
GITHUB_TOKEN=xxxxxxxxxxxxxxxxxxxxxx # (optional) for private repos

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# General
12
.DS_Store
23
.env
34
acme/

README.md

+152-18
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,195 @@
1-
# https-backend
1+
# 🔐 Universal HTTPS Backend
22

3-
This repository is a minimal setup for running your services with Docker (Compose) behind Traefik proxy and with autogenerated HTTPS certificates. That means if you have the `API` service (e.g. NodeJS app) and would like to make it available through `https://api.your-domain.com`, then you are at the right place.
3+
![Traefik](https://img.shields.io/badge/Proxy-Traefik-skyblue)
4+
![HTTPS](https://img.shields.io/badge/HTTPS-Configured-green)
5+
![PostgreSQL](https://img.shields.io/badge/Database-PostgreSQL-blue)
6+
![Redis](https://img.shields.io/badge/Cache-Redis-red)
7+
![Plausible](https://img.shields.io/badge/Analytics-Plausible-purple)
8+
![Website](https://img.shields.io/badge/Frontend-React%20App-blue)
49

5-
## Quickstart
10+
This repository is a minimalistic setup for running services with Docker Compose behind Traefik and autogenerated `https` certificates.
611

7-
1. Connect to the remote server
12+
Let's say, you have the `API` service (e.g. NodeJS app), React app for frontend and would like to make it available via `https://api.your-domain.com` and `https://dashboard.your-domain.com`, then you are at the right place!
13+
14+
It includes the collection of `docker-compose` files and bash scripts that automate and simplify startup of your project, by taking care of some DevOps routine. List with available services can be found at [Services section](#services).
15+
16+
> _HTTPS Backend_ is a part of [starters.dev](https://github.com/starters-dev) collection.
17+
18+
## Getting Started
19+
20+
### Quickstart
21+
22+
1. Connect to your remote server
823

924
```bash
1025
> ssh root@IP_ADDRESS
1126
```
1227

28+
> Hint: you can use a cloud computing providers such as [DigitalOcean](https://digitalocean.com).
29+
1330
2. Clone this repo
1431

1532
```bash
1633
> git clone https://github.com/starters-dev/https-backend backend
1734
> cd backend
1835
```
1936

20-
3. Fill in `.env` file with your information
37+
3. Run `setup` script and fill in `env` variables
2138

2239
```bash
23-
> mv .env.example .env
40+
> bash setup.sh
2441
> nano .env
2542
```
2643

27-
4. Get the service repo (e.g. `nextjs-tailwindcss`)
44+
Check [Environment variables](#environment-variables) section for more information.
45+
46+
4. Get a service repo
47+
48+
> Our example is based on [backend.starters.dev-website](https://github.com/starters-dev/backend.starters.dev-website) repo.
2849
2950
```bash
30-
> bash run/get-repo.sh nextjs-tailwindcss
51+
> git clone https://github.com/starters-dev/backend.starters.dev-website services/frontend
3152
```
3253

33-
It will fetch the following repo `https://github.com/starters-dev/nextjs-tailwindcss`
34-
3554
5. Build and run
3655

3756
```bash
38-
> bash run/build.sh
57+
> bash build.sh
3958
```
4059

41-
It will setup everything, including ACME (https certificates), and will run docker.
60+
It will setup everything, including https certificates, and will start Docker Compose services in the background.
4261

43-
## Tips
62+
### Service creation
4463

45-
---
64+
If you'd like to add your own service, then you should follow the steps below to keep the same structure:
65+
66+
1. Add service's Docker Compose file `services/docker-compose.YOUR_SERVICE.yml`.
67+
68+
2. `(optional)` Add service's folder `services/YOUR_SERVICE`. For example, if you are going to store some data or configuration files only related to that service.
69+
70+
3. `(optional)` Add service's script file `services/YOUR_SERVICE/index.sh`. For example, if you need to craete some folders in advance on `setup` step.
71+
72+
### Service deletion
4673

47-
If you'd like to add your service or from [starters-dev](https://github.com/starters-dev), create a dedicated `docker-compose.your-service.yml` file and add it to `run/build.sh` and then run:
74+
If you don't need a service, you can easily delete it by running:
4875

4976
```bash
50-
> bash run/get-repo.sh <service-repo>
77+
> bash run/sdel.sh SERVICE_NAME
5178
```
5279

80+
For example, if you don't need `postgresql` service, you will run `bash run/sdel.sh postgresql` and it will delete related files.
81+
82+
## Structure
83+
84+
The folder structure is pretty simple but lets you reuse and write less boilerplate code.
85+
86+
- `docker-compose.main.yml` - main Docker Compose file with DNS challence, ACME and ports configuration.
87+
- `build.sh` - `build` script that runs `setup` script with all scripts under `run/services` folder and builds and runs Docker images in background.
88+
- `.env` - list of environment variables.
89+
- `run/` - folder with general bash scripts.
90+
- `services/` - folder with Docker services files. For example, if you have `redis` service, then you would have `services/docker-compose.redis.yml` with specific configuration for `redis` service. Or if your service is a frontend app, then you'll need to clone it to `services/frontend/` and create `services/docker-compose.frontend.yml`.
91+
- `services/your-service/` - folder with your service, for ex. `frontend`.
92+
93+
## What's inside
94+
95+
The setup uses [Traefik](https://github.com/traefik/traefik), the cloud native application proxy, to simplify the process of getting `https` certificates and the way to describe services.
96+
97+
You can always delete existing (if you don't need them) or add your own services, just make sure to apply necessary changes.
98+
99+
### Services
100+
101+
---
102+
103+
[PostgreSQL](https://www.postgresql.org) - open source object-relational database known for reliability and data integrity.
104+
105+
It uses [Bitnami Docker image](https://hub.docker.com/r/bitnami/postgresql).
106+
107+
<details>
108+
<summary>Env variables</summary>
109+
110+
- `POSTGRESQL_USERNAME` - username for PostgreSQL.
111+
- `POSTGRESQL_PASSWORD` - password for PostgreSQL.
112+
- `POSTGRESQL_DATABASE` - name of the database in PostgreSQL.
113+
114+
</details>
115+
53116
---
54117

118+
[Redis](https://redis.io) - open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.
119+
120+
It uses [Bitnami Docker image](https://hub.docker.com/r/bitnami/redis).
121+
122+
<details>
123+
<summary>Env variables</summary>
124+
125+
- `REDIS_PASSWORD` - password for Redis.
126+
- `REDIS_DISABLE_COMMANDS` - commands disabled from execution.
127+
128+
</details>
129+
55130
---
56131

57-
You can find example `env` file in the root folder.
132+
[Plausible](https://plausible.io) - simple and privacy-friendly Google Analytics alternative.
133+
134+
[Official documentation](https://plausible.io/docs/self-hosting).
135+
136+
<details>
137+
<summary>Env variables</summary>
138+
139+
`services/plausible/conf.env` file:
140+
141+
- `SECRET_KEY_BASE` - secret key of your app. Can be generated by running `openssl rand -base64 64 | tr -d '\n' ; echo`.
142+
- `BASE_URL` - base url where this instance is accessible, including the scheme (eg. `http://` or `https://`), the domain name, and optionally a port.
143+
- `ADMIN_USER_EMAIL` - admin email.
144+
- `ADMIN_USER_NAME` - admin usenamename.
145+
- `ADMIN_USER_PWD` - admin password.
146+
147+
</details>
148+
149+
<details>
150+
<summary>Troubleshooting</summary>
151+
152+
- [ClickHouse] _Database plausible_events_db doesn't exist_. If you encounter this issue, check out [this comment](https://github.com/plausible/hosting/issues/49#issuecomment-1229183219) for the solution.
153+
154+
</details>
58155

59-
`DO_AUTH_TOKEN` is used to generate https certificates against [DigitalOcean](https://digitalocean.com) challenge. You can generate one in the DO Networking dashboard or choose one of the [available providers](https://doc.traefik.io/traefik/https/acme/#providers).
156+
---
157+
158+
[React App](https://backend.starters.dev) - simple [frontend app](https://github.com/starters-dev/backend.starters.dev-website).
60159

61160
---
161+
162+
> more services will be added...
163+
164+
### Env variables
165+
166+
Current setup requires you to fill in `.env` file with variables that are used in services.
167+
168+
- `DOMAIN_NAME` - your registered domain.
169+
- `DO_AUTH_TOKEN` - Digital Ocean token that is going to be used for DNS challenge and generating https certificates. It's required by Traefik and they provide other options, you can find them [here](https://doc.traefik.io/traefik/https/acme/#providers). If you'd like to continue with Digital Ocean, then you can create a token in `Dashboard` -> `API` -> `Tokens/Keys`.
170+
- `ACME_EMAIL` - email that is used for [Let's Encrypt](https://letsencrypt.org) and `https` certificates.
171+
- `GITHUB_TOKEN` - `(optional)` github token for private repos.
172+
173+
## Enhancements
174+
175+
There are still some things I would like to add to the backend setup:
176+
177+
- [x] [PostgreSQL](https://www.postgresql.org) - open source object-relational database known for reliability and data integrity.
178+
- [x] [Redis](https://redis.io) - open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.
179+
- [x] [Plausible](https://plausible.io) - simple and privacy-friendly Google Analytics alternative.
180+
- [ ] [GlitchTip](https://glitchtip.com) - open source reimplementation of Sentry error tracking platform.
181+
- [ ] [Cal.com](https://cal.com) - scheduling infrastructure for absolutely everyone. [Github repo](https://github.com/calcom/docker).
182+
- [ ] [Mattermost](https://mattermost.com) - open source platform for developer collaboration. [Github repo](https://github.com/starters-dev/mattermost).
183+
- [ ] [Taiga](https://www.taiga.io) - open source, self-hosted project management tool. [Github repo](https://github.com/starters-dev/taiga).
184+
- [ ] [Focalboard](https://focalboard.com) - open source, self-hosted alternative to Trello, Notion, and Asana. [Github repo](https://github.com/starters-dev/focalboard).
185+
- [ ] Github actions or similar technique
186+
187+
## Why?
188+
189+
While developing `API` and similar services for mobile apps, you can not really access `localhost` (on mobile device) if, let's say, you have running Docker image on you local machine. Also you have to make only `https` requests from mobile app.
190+
191+
Another reason was to have `PostgreSQL` and `Redis` always running in the cloud but for cheap cost. You can run both of them easily on the $6 server.
192+
193+
#### Note
194+
195+
This backend setup is a great fit if you just want to start writing business logic without messing with DevOps and spending a few days on that what's already has been done for you. It can be used for development and early production stages (of course, depends on your project), however, it's strongly **recommended** to have services like `PostgreSQL`, `Redis`, and similar to be seperated and independent on production stage.

build.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# -- getting docker-compose files
2+
DC_FILES="-f docker-compose.yml"
3+
for F in `find ./services -maxdepth 1 -type f -name "docker-compose*.yml"`
4+
do
5+
DC_FILES="$DC_FILES -f $F "
6+
done
7+
8+
# -- building containers
9+
docker-compose $DC_FILES build && docker-compose $DC_FILES up -d

docker-compose.nextjs-tailwindcss.yml

-15
This file was deleted.

docker-compose.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ services:
99
- "--providers.docker.exposedbydefault=false"
1010
- "--entrypoints.http.address=:80"
1111
- "--entrypoints.https.address=:443"
12+
- "--entrypoints.postgresql.address=:5432" # PostgreSQL entry point
13+
- "--entrypoints.redis.address=:6379" # Redis entry point
1214
- "--certificatesresolvers.mydnschallenge.acme.dnschallenge=true"
1315
- "--certificatesresolvers.mydnschallenge.acme.dnschallenge.provider=digitalocean"
14-
- "--certificatesresolvers.mydnschallenge.acme.email=[email protected]"
16+
- "--certificatesresolvers.mydnschallenge.acme.email=${ACME_EMAIL}"
1517
- "--certificatesresolvers.mydnschallenge.acme.storage=/acme.json"
1618
environment:
1719
- DO_AUTH_TOKEN=${DO_AUTH_TOKEN}
1820
ports:
1921
- "80:80"
2022
- "443:443"
21-
- "6969:8080"
23+
- "6969:8080" # Traefik dashboard
24+
- "5432:5432" # PostgreSQL port
25+
- "6379:6379" # Redis port
2226
volumes:
2327
- /var/run/docker.sock:/var/run/docker.sock
2428
- ./acme/acme.json:/acme.json

run/acme.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# `acme/acme.json` file for storing https certificates
12
DIR=acme
23
FILE=acme/acme.json
34

@@ -7,5 +8,6 @@ fi
78

89
if [ ! -f "$FILE" ]; then
910
touch "$FILE"
10-
chmod 600 "$FILE"
11-
fi
11+
fi
12+
13+
chmod 600 "$FILE"

run/build.sh

-7
This file was deleted.

run/get-repo.sh

-2
This file was deleted.

run/sadd.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
SNAME=$1
2+
3+
# -- adding docker compose file
4+
SDC=services/docker-compose.$SNAME.yml
5+
if [ ! -f "$SDC" ]; then
6+
touch $SDC
7+
fi
8+
9+
# -- adding service folder
10+
SDIR=services/$SNAME
11+
if [ ! -d "$SDIR" ]; then
12+
mkdir $SDIR
13+
fi
14+
15+
# -- adding script
16+
SSH=services/$SNAME/index.sh
17+
if [ ! -f "$SSH" ]; then
18+
touch $SSH > SNAME=$SNAME
19+
fi

run/sdel.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SNAME=$1
2+
3+
# -- deleting service folder
4+
SDIR=services/$SNAME
5+
if [ -d "$SDIR" ]; then
6+
rm -rf $SDIR
7+
fi
8+
9+
# -- deleting docker compose file
10+
SDC=services/docker-compose.$SNAME.yml
11+
if [ -f "$SDC" ]; then
12+
rm -rf $SDC
13+
fi

run/setup.sh

-1
This file was deleted.

services/docker-compose.frontend.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "3.7"
2+
3+
services:
4+
frontend:
5+
build: ./services/frontend
6+
restart: always
7+
labels:
8+
- "traefik.enable=true"
9+
- "traefik.http.routers.frontend.rule=Host(`backend.${DOMAIN_NAME}`)"
10+
- "traefik.http.routers.frontend.entryPoints=http"
11+
- "traefik.http.routers.frontend.middlewares=https_redirect"
12+
- "traefik.http.middlewares.https_redirect.redirectscheme.scheme=https"
13+
- "traefik.http.routers.frontend_tls.rule=Host(`backend.${DOMAIN_NAME}`)"
14+
- "traefik.http.routers.frontend_tls.entryPoints=https"
15+
- "traefik.http.routers.frontend_tls.tls.certresolver=mydnschallenge"

0 commit comments

Comments
 (0)