2022-11-26 17:54:44 +01:00
# Infrastructure
2022-11-24 13:32:59 +01:00
2022-11-27 11:39:16 +01:00
_My personal infrastructure for my servers and services._
2022-11-24 13:32:59 +01:00
## About
2022-11-27 11:39:16 +01:00
This is my infrastructure. It's a collection of scripts and configuration files that I use to manage my servers and services.
2024-05-05 11:09:38 +02:00
It uses caddy and docker-compose to run my services (And many other things).
2022-11-27 11:39:16 +01:00
It's a **work in progress** , and I'm still learning a lot about it.
If you have any **questions** or **suggestions** , feel free to open an issue or a pull request.
2022-11-24 13:32:59 +01:00
## Features
2023-04-10 23:42:21 +02:00
- [x] caddy 2 reverse proxy
2022-11-26 17:54:44 +01:00
- [x] Docker / docker-compose
2023-11-25 17:34:59 +01:00
- [x] Caddy
2023-04-10 23:42:21 +02:00
- [x] Wordpress (Via FASTCGI/caddy)
2023-11-25 17:34:59 +01:00
- [x] Adminer (MariaDB)
2024-05-04 23:36:13 +02:00
- [x] Jellyfin (Media server)
- [x] Gitea (Git server)
- [x] Uptime Kuma (Monitoring)
- [x] Torrent server
2022-11-24 13:32:59 +01:00
## Screenshots
2022-11-26 17:54:44 +01:00
## Installation and configuration
2022-11-24 13:32:59 +01:00
### Requirements
- [Docker ](https://docs.docker.com/install/ )
- [Docker Compose ](https://docs.docker.com/compose/install/ )
2022-11-26 17:54:44 +01:00
- [Git ](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git )
- [Web domain ](https://www.ovh.com/world/domains/ ) (I use OVH)
2023-12-09 14:50:52 +01:00
- [Open port 80 and 443 on your router ](http://192.168.0.1/ ) (I use a SFR box with default IP)
2022-11-24 13:32:59 +01:00
2024-05-05 11:10:26 +02:00
***To avoid get rate limit from letsencrypt (10 certificates per 3 hours), you need to disable some certificates in the caddyfiles and enable them 3h later...***
2024-05-04 23:36:13 +02:00
2022-11-26 17:54:44 +01:00
### Clone
2022-11-24 13:32:59 +01:00
Clone this repository to your local machine using:
```sh
2022-11-26 17:54:44 +01:00
git clone --recurse-submodules --remote-submodules https://github.com/bensuperpc/infrastructure.git
2022-11-24 13:32:59 +01:00
```
Go to the folder
```sh
2022-11-26 17:54:44 +01:00
cd infrastructure
2022-11-24 13:32:59 +01:00
```
2023-12-09 14:50:52 +01:00
### Configure the domain
2022-11-24 13:32:59 +01:00
2024-05-07 19:41:28 +02:00
For all **bensuperpc.org** , you need to replace it with your domain, example: **mydomain.com** , so the same for **bensuperpc.com** ect...
2022-11-28 13:52:28 +01:00
```sh
2023-11-25 17:34:59 +01:00
find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/bensuperpc.org/mydomain.com/g'
2022-11-28 13:52:28 +01:00
```
2023-11-25 17:34:59 +01:00
Check if all bensuperpc.* are replaced by your domain in [Caddyfile ](caddy/wordpress/Caddyfile )
2024-05-07 19:41:28 +02:00
And then, caddy will generate the certificate for you and renew it automatically :D
2022-11-24 13:32:59 +01:00
2024-05-04 17:07:38 +02:00
| Domain name | Type | Description |
2024-05-05 11:09:38 +02:00
| --- | --- | --- |
2024-05-07 20:31:39 +02:00
| [bensuperpc.org ](https://bensuperpc.org ) | Main | Main domain |
| [adminer.bensuperpc.org ](https://adminer.bensuperpc.org ) | Sub | Adminer for MariaDB for wordpress only |
| [uptimekuma.bensuperpc.org ](https://uptimekuma.bensuperpc.org ) | Sub | Uptime Kuma for monitoring |
| [torrent.bensuperpc.org ](https://torrent.bensuperpc.org ) | Sub | Torrent server |
| [git.bensuperpc.org ](https://git.bensuperpc.org ) | Sub | Gitea for git |
| [link.bensuperpc.org ](https://link.bensuperpc.org ) | Sub | For link shortener |
| [jellyfin.bensuperpc.org ](https://jellyfin.bensuperpc.org ) | Sub | Jellyfin for media server |
| [syncthing.bensuperpc.org ](https://syncthing.bensuperpc.org ) | Sub | SyncThing for file synchronization |
| [ssh.bensuperpc.org ](https://ssh.bensuperpc.org ) | Sub | Openssh for ssh |
2024-05-04 17:07:38 +02:00
| bensuperpc.com | Main | Redirect to bensuperpc.org |
2024-05-06 09:03:17 +02:00
| bensuperpc.fr | Main | Redirect to bensuperpc.org |
| bensuperpc.net | Main | Redirect to bensuperpc.org |
| bensuperpc.ovh | Main | Redirect to bensuperpc.org |
2023-12-09 14:50:52 +01:00
2023-04-10 23:42:21 +02:00
### Configure the infrastructure
2022-11-24 13:32:59 +01:00
2023-11-25 17:46:53 +01:00
You need to configure the infrastructure with your own configuration.
2023-11-25 10:03:44 +01:00
2023-12-09 14:50:52 +01:00
You can generate a password with 32 characters:
```sh
openssl rand -base64 32
```
2023-11-25 17:46:53 +01:00
For the [wordpress.env ](env/wordpress.env ) file, you need to change the password and user for the database.
2023-11-25 17:34:59 +01:00
```sh
WORDPRESS_DB_USER=bensuperpc
WORDPRESS_DB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
WORDPRESS_DB_NAME=wordpress
2024-05-05 18:28:37 +02:00
WORDPRESS_DB_HOST=wordpress_db:3306
2023-11-25 17:34:59 +01:00
```
2022-11-24 13:32:59 +01:00
2024-05-04 17:07:38 +02:00
For [wordpress_db.env ](env/wordpress_db.env ) file, you need to change the password(s) and user for the database.
2023-11-25 17:34:59 +01:00
2022-11-24 13:32:59 +01:00
```sh
2023-11-25 10:03:44 +01:00
MARIADB_ROOT_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
MARIADB_USER=bensuperpc
MARIADB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
MARIADB_DATABASE=wordpress
2022-11-26 17:54:44 +01:00
```
2023-11-25 17:46:53 +01:00
For [adminer.env ](env/adminer.env ) file, you need to change the password(s) and user for the database.
2023-11-25 17:34:59 +01:00
```sh
MYSQL_ROOT_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
MYSQL_USER=bensuperpc
MYSQL_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
2024-05-05 18:28:37 +02:00
ADMINER_DEFAULT_SERVER=wordpress_db
2023-11-25 17:34:59 +01:00
```
2024-05-04 17:07:38 +02:00
For [gitea.env ](env/gitea.env ) file, you need to change the password(s) and user for the database.
```sh
GITEA__database__DB_TYPE=mysql
GITEA__database__HOST=database_gitea:3306
GITEA__database__NAME=gitea
GITEA__database__USER=bensuperpc
GITEA__database__PASSWD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
```
For [gitea_db.env ](env/gitea_db.env ) file, you need to change the password(s) and user for the database.
```sh
MYSQL_ROOT_PASSWORD=xpc4zIhHZzWKqVHcjBu4aW6aS7jG8d7X
MYSQL_USER=bensuperpc
MYSQL_PASSWORD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
MYSQL_DATABASE=gitea
```
2022-11-26 17:54:44 +01:00
### Start the infrastructure
Start the website with:
```sh
make start-at
2022-11-24 13:32:59 +01:00
```
2022-11-26 18:13:46 +01:00
Stop the website with (or CTRL+C with the previous command):
2022-11-24 13:32:59 +01:00
```sh
2022-11-26 17:54:44 +01:00
make stop
2022-11-24 13:32:59 +01:00
```
2023-11-25 17:46:53 +01:00
Remove countainers with:
```sh
make down
```
2023-12-09 14:50:52 +01:00
### All services
You can find all services on the [docker-compose.yml ](docker-compose.yml ) file or on this table:
| Service | Description | URL |
| --- | --- | --- |
| Wordpress | Wordpress website | [bensuperpc.org ](https://bensuperpc.org ) and [www.bensuperpc.org ](https://www.bensuperpc.org ) |
| Adminer | Adminer for MariaDB | [adminer.bensuperpc.org ](https://adminer.bensuperpc.org ) |
2024-05-04 23:36:13 +02:00
| Uptime Kuma | Uptime Kuma for monitoring | [uptimekuma.bensuperpc.org ](https://uptimekuma.bensuperpc.org ) |
| Torrent | Torrent server | [torrent.bensuperpc.org ](https://torrent.bensuperpc.org ) |
| Gitea | Gitea for git | [git.bensuperpc.org ](https://git.bensuperpc.org ) |
| Jellyfin | Jellyfin for media server | [jellyfin.bensuperpc.org ](https://jellyfin.bensuperpc.org ) |
2024-05-06 09:03:17 +02:00
| SyncThing | SyncThing for file synchronization | [syncthing.bensuperpc.org ](https://syncthing.bensuperpc.org ) |
| Openssh | Openssh for ssh | [ssh.bensuperpc.org ](https://ssh.bensuperpc.org ) |
2023-12-09 14:50:52 +01:00
2024-05-07 19:41:28 +02:00
You can disable some services by removing the service name in PROFILES variable in the [Makefile ](Makefile ) file.
2022-11-26 17:54:44 +01:00
2022-11-24 13:32:59 +01:00
## Build with
- [Wordpress ](https://wordpress.org/ )
- [Gnu Make ](https://www.gnu.org/software/make/ )
- [Github API ](https://docs.github.com/en/rest )
- [Github Actions ](https://docs.github.com/en/actions )
- [Docker ](https://www.docker.com/ )
- [Docker Compose ](https://docs.docker.com/compose/ )
- [Docker Hub ](https://hub.docker.com/ )
2023-04-10 23:42:21 +02:00
- [How To Start WordPress with Caddy using Docker Compose ](https://minhcung.me/how-to-start-wordpress-with-caddy-using-docker-compose-3d31bb9ef88b )
- [Digital Ocean - How To Install WordPress with Docker Compose (nginx) ](https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-docker-compose )
2022-11-26 17:54:44 +01:00
- [Letsencrypt ](https://letsencrypt.org/ )
2023-11-25 17:46:53 +01:00
- [Caddy ](https://caddyserver.com/ )
2022-11-24 13:32:59 +01:00
## License
[License ](LICENSE )