2022-11-26 17:54:44 +01:00
# Infrastructure
2022-11-24 13:32:59 +01:00
2024-08-25 14:45:05 +02:00
_Open source, decentralized and self-hosted infrastructure for many services._
2022-11-24 13:32:59 +01:00
## About
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)
2024-08-23 14:00:39 +02:00
- [x] qbittorrent and transmission (Torrent client/server)
2024-08-23 17:19:24 +02:00
- [x] SyncThing (File synchronization)
- [x] PsiTransfer (File sharing)
- [x] it-tools (Tools for IT)
2024-08-23 21:26:02 +02:00
- [x] Privatebin (Pastebin)
2024-08-25 14:30:04 +02:00
- [x] Yacht (Web interface for managing docker containers)
2022-11-24 13:32:59 +01:00
## Screenshots
2024-09-09 21:49:42 +02:00
![astar ](resources/homepagev1.jpg )
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)
2024-09-11 13:02:44 +02:00
- [Open port 80, 443, 22 and 2222 on your router ](http://192.168.1.1/ )
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-09-09 21:49:42 +02:00
| [bensuperpc.org ](https://bensuperpc.org ) | Main | Redirect to www.bensuperpc.org |
2024-08-25 20:53:35 +02:00
| [www.bensuperpc.org ](https://www.bensuperpc.org ) | Main | Homepage |
| [wordpress.bensuperpc.org ](https://wordpress.bensuperpc.org ) | Sub | Wordpress website |
2024-05-07 20:31:39 +02:00
| [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 |
2024-05-19 22:33:32 +02:00
| [qbittorrent.bensuperpc.org ](https://qbittorrent.bensuperpc.org ) | Sub | Torrent client/server |
2024-08-23 14:00:39 +02:00
| [transmission.bensuperpc.org ](https://transmission.bensuperpc.org ) | Sub | Torrent client/server |
2024-05-07 20:31:39 +02:00
| [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 |
2024-06-24 23:34:29 +02:00
| [psitransfer.bensuperpc.org ](https://psitransfer.bensuperpc.org ) | Sub | PsiTransfer for file sharing |
2024-08-23 17:19:24 +02:00
| [it-tools.bensuperpc.org ](https://it-tools.bensuperpc.org ) | Sub | Tools for IT |
2024-08-23 21:26:02 +02:00
| [privatebin.bensuperpc.org ](https://privatebin.bensuperpc.org ) | Sub | Pastebin |
2024-08-25 14:30:04 +02:00
| [yacht.bensuperpc.org ](https://yacht.bensuperpc.org ) | Sub | Web interface for managing docker containers |
2024-08-26 22:07:40 +02:00
| [projectsend.bensuperpc.org ](https://projectsend.bensuperpc.org ) | Sub | ProjectSend for file sharing |
2024-08-27 23:53:12 +02:00
| [picoshare.bensuperpc.org ](https://picoshare.bensuperpc.org ) | Sub | Picoshare for file sharing |
2024-09-02 21:19:27 +02:00
| [dufs.bensuperpc.org ](https://dufs.bensuperpc.org ) | Sub | Dufs for file sharing |
2024-09-09 21:49:42 +02:00
| bensuperpc.com | Main | Redirect to www.bensuperpc.org |
| bensuperpc.fr | Main | Redirect to www.bensuperpc.org |
| bensuperpc.net | Main | Redirect to www.bensuperpc.org |
| bensuperpc.ovh | Main | Redirect to www.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
```
2024-09-09 21:49:42 +02:00
Or online: [passwordsgenerator.net ](https://passwordsgenerator.net/ )
For [caddy_backup.env ](infrastructure/caddy/env/caddy_backup.env ) file, you need to change the password(s) for the restic backup.
```sh
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
```
2024-08-23 14:00:39 +02:00
For the [wordpress.env ](infrastructure/wordpress/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
```
2022-11-24 13:32:59 +01:00
2024-08-23 14:00:39 +02:00
For [wordpress_db.env ](infrastructure/wordpress/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
2024-09-08 23:08:39 +02:00
MYSQL_ROOT_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
MYSQL_USER=bensuperpc
MYSQL_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
2022-11-26 17:54:44 +01:00
```
2024-08-25 14:56:02 +02:00
For [wordpress_backup.env ](infrastructure/wordpress/env/wordpress_backup.env ) file, you need to change the password(s) for the restic backup.
```sh
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
```
2024-08-23 14:00:39 +02:00
For [adminer.env ](infrastructure/wordpress/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-08-23 14:00:39 +02:00
For [gitea.env ](infrastructure/gitea/env/gitea.env ) file, you need to change the password(s) and user for the database.
2024-05-04 17:07:38 +02:00
```sh
GITEA__database__USER=bensuperpc
GITEA__database__PASSWD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
2024-06-24 23:29:31 +02:00
GITEA__security__SECRET_KEY=ykcZt23an1E4lFHWvrCKdAyt16WAiK9c
2024-05-04 17:07:38 +02:00
```
2024-08-23 14:00:39 +02:00
For [gitea_db.env ](infrastructure/gitea/env/gitea_db.env ) file, you need to change the password(s) and user for the database.
2024-05-04 17:07:38 +02:00
```sh
MYSQL_ROOT_PASSWORD=xpc4zIhHZzWKqVHcjBu4aW6aS7jG8d7X
MYSQL_USER=bensuperpc
MYSQL_PASSWORD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
```
2024-08-26 22:07:40 +02:00
For [psitransfer.env ](infrastructure/psitransfer/env/psitransfer.env ) file, you need to change the secret key.
2024-06-24 23:29:31 +02:00
```sh
PSITRANSFER_ADMIN_PASS=n9jLVNT9QUotTJTT91JqH4GyBTg9pvEn
```
2024-08-25 14:30:04 +02:00
For [yacht.env ](infrastructure/yacht/env/yacht.env ) file, you need to change the secret key.
```sh
SECRET_KEY=UZvg9nbcGIJlPEB3uI39TAEWyFOz9nm8
```
2024-08-26 22:07:40 +02:00
For [projectsend_db.env ](infrastructure/projectsend/env/projectsend_db.env ) file, you need to change the password(s) and user for the database.
```sh
2024-09-08 23:08:39 +02:00
MYSQL_ROOT_PASSWORD=8O34297GrBfT3Ld34Lfg9mpotmZwbJtt
MYSQL_USER=bensuperpc
MYSQL_PASSWORD=wdSUa1JEZhXie5AJ5NcX1w73xmpO12EY
2024-08-26 22:07:40 +02:00
```
2024-08-27 23:53:12 +02:00
For [picoshare.env ](infrastructure/picoshare/env/picoshare.env ) file, you need to change the secret key.
```sh
PS_SHARED_SECRET=CBuS4DJLqIe93xF1KGYRrnhxUFBqLD2n
```
2024-09-02 21:19:27 +02:00
For [dufs.env ](infrastructure/dufs/env/dufs.env ) file, you need to change the secret key and if you want the user name.
```sh
2024-09-07 21:20:05 +02:00
DUFS_AUTH="admin:heqihlOfBmJDESGFlpbPi7P7Mi6F7RkV@/:rw|@/:ro"
2024-09-02 21:19:27 +02:00
```
2024-09-04 23:27:40 +02:00
For [stirlingpdf.env ](infrastructure/stirlingpdf/env/stirlingpdf.env ) file, it's **completly optional** , you can change the password(s) and user.
```sh
# Enable security, optional
DOCKER_ENABLE_SECURITY=true
SECURITY_ENABLE_LOGIN=true
# Can be disabled after initial login, optional,
# default it admin:stirling
SECURITY_INITIALLOGIN_USERNAME=admin
SECURITY_INITIALLOGIN_PASSWORD=Jw9U039f5xc2mFcacvGvPD9RjwIh4DzO
```
2024-09-11 13:02:44 +02:00
You can need to add/change the public ssh key [id_ed25519.pub ](infrastructure/openssh/config/authorized_keys/id_ed25519.pub ) (its my public key), also change the user name in [openssh.env ](infrastructure/openssh/env/openssh.env ):
```sh
USER_NAME=bensuperpc
```
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
```
2024-09-09 21:49:42 +02:00
You can disable some services by removing the service name in PROFILES variable in the [Makefile ](Makefile ) file.
2023-12-09 14:50:52 +01:00
2024-09-09 21:49:42 +02:00
To enable the gitea CI: https://medium.com/@lokanx/how-to-build-docker-containers-using-gitea-runners-600729555e07
2023-12-09 14:50:52 +01:00
2024-09-09 21:49:42 +02:00
### Homepage
2023-12-09 14:50:52 +01:00
2024-09-09 21:49:42 +02:00
You can change the homepage config in these files:
2022-11-26 17:54:44 +01:00
2024-09-09 21:49:42 +02:00
- [bookmarks.yaml ](infrastructure/homepage/config/bookmarks.yaml )
- [services.yaml ](infrastructure/homepage/config/services.yaml )
- [settings.yaml ](infrastructure/homepage/config/settings.yaml )
- [widgets.yaml ](infrastructure/homepage/config/widgets.yaml )
### Docker volumes
This infrastructure uses docker volumes to store data, all configuration/data for each service are not shared between services for security and maintenance reasons, but **public_data** and **private_data** are shared between all services to store your data.
| Volume name | Description |
| --- | --- |
2024-09-11 13:02:44 +02:00
| public_data | Public data reachable on internet via [dufs.bensuperpc.org ](https://dufs.bensuperpc.org ), can be disabled. |
| private_data | Private data |
2024-09-09 21:49:42 +02:00
### SSH access
The default port for ssh/rsync is is 2222.
2024-08-23 17:19:24 +02:00
## Sources
2022-11-24 13:32:59 +01:00
- [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 )
2024-08-26 22:07:40 +02:00
- [Imagisphe ](https://imagisphe.re/ )
2022-11-26 17:54:44 +01:00
- [Letsencrypt ](https://letsencrypt.org/ )
2023-11-25 17:46:53 +01:00
- [Caddy ](https://caddyserver.com/ )
2024-08-23 17:19:24 +02:00
- [Adminer ](https://www.adminer.org/ )
- [Uptime Kuma ](https://uptime-kuma.com/ )
- [qbittorrent ](https://www.qbittorrent.org/ )
- [Transmission ](https://transmissionbt.com/ )
- [Gitea ](https://gitea.io/ )
- [Jellyfin ](https://jellyfin.org/ )
- [SyncThing ](https://syncthing.net/ )
- [PsiTransfer ](https://psitransfer.com/ )
- [It-tools ](https://github.com/CorentinTh/it-tools )
2024-08-23 21:26:02 +02:00
- [Privatebin ](https://github.com/PrivateBin/PrivateBin )
2024-08-24 08:44:33 +02:00
- [ghost ](https://ghost.org )
2024-08-24 01:13:55 +02:00
- [Homepage Tuto ](https://belginux.com/installer-homepage-avec-docker/ )
2024-08-25 14:30:04 +02:00
- [Yacht ](https://yacht.sh/ )
2024-08-26 22:07:40 +02:00
- [ProjectSend ](https://www.projectsend.org/ )
2024-08-27 23:53:12 +02:00
- [Picoshare ](https://github.com/mtlynch/picoshare )
2024-09-02 21:19:27 +02:00
- [Dufs ](https://github.com/sigoden/dufs )
2024-09-09 21:49:42 +02:00
- [Fix docker volume ](https://pratikpc.medium.com/use-docker-compose-named-volumes-as-non-root-within-your-containers-1911eb30f731 )
2022-11-24 13:32:59 +01:00
## License
[License ](LICENSE )