|
1 |
| -# https-backend |
| 1 | +# 🔐 Universal HTTPS Backend |
2 | 2 |
|
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 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
4 | 9 |
|
5 |
| -## Quickstart |
| 10 | +This repository is a minimalistic setup for running services with Docker Compose behind Traefik and autogenerated `https` certificates. |
6 | 11 |
|
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 |
8 | 23 |
|
9 | 24 | ```bash
|
10 | 25 | > ssh root@IP_ADDRESS
|
11 | 26 | ```
|
12 | 27 |
|
| 28 | +> Hint: you can use a cloud computing providers such as [DigitalOcean](https://digitalocean.com). |
| 29 | +
|
13 | 30 | 2. Clone this repo
|
14 | 31 |
|
15 | 32 | ```bash
|
16 | 33 | > git clone https://github.com/starters-dev/https-backend backend
|
17 | 34 | > cd backend
|
18 | 35 | ```
|
19 | 36 |
|
20 |
| -3. Fill in `.env` file with your information |
| 37 | +3. Run `setup` script and fill in `env` variables |
21 | 38 |
|
22 | 39 | ```bash
|
23 |
| -> mv .env.example .env |
| 40 | +> bash setup.sh |
24 | 41 | > nano .env
|
25 | 42 | ```
|
26 | 43 |
|
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. |
28 | 49 |
|
29 | 50 | ```bash
|
30 |
| -> bash run/get-repo.sh nextjs-tailwindcss |
| 51 | +> git clone https://github.com/starters-dev/backend.starters.dev-website services/frontend |
31 | 52 | ```
|
32 | 53 |
|
33 |
| -It will fetch the following repo `https://github.com/starters-dev/nextjs-tailwindcss` |
34 |
| - |
35 | 54 | 5. Build and run
|
36 | 55 |
|
37 | 56 | ```bash
|
38 |
| -> bash run/build.sh |
| 57 | +> bash build.sh |
39 | 58 | ```
|
40 | 59 |
|
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. |
42 | 61 |
|
43 |
| -## Tips |
| 62 | +### Service creation |
44 | 63 |
|
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 |
46 | 73 |
|
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: |
48 | 75 |
|
49 | 76 | ```bash
|
50 |
| -> bash run/get-repo.sh <service-repo> |
| 77 | +> bash run/sdel.sh SERVICE_NAME |
51 | 78 | ```
|
52 | 79 |
|
| 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 | + |
53 | 116 | ---
|
54 | 117 |
|
| 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 | + |
55 | 130 | ---
|
56 | 131 |
|
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> |
58 | 155 |
|
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). |
60 | 159 |
|
61 | 160 | ---
|
| 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. |
0 commit comments