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.
2022-11-26 17:54:44 +01:00
It uses Nginx 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
2022-11-26 20:24:08 +01:00
- [x] Nginx reverse proxy
2022-11-26 17:54:44 +01:00
- [x] Docker / docker-compose
- [x] Letsencrypt / Certbot
- [x] Flask (Via UWSGI/NGINX)
- [x] Wordpress (Via FASTCGI/NGINX)
- [x] PHPMyAdmin (MariaDB)
- [x] PGAdmin (PostgreSQL)
- [x] Qbittorrent
2022-11-27 11:50:15 +01:00
- [ ] Use Flask instead of wordpress as default blog
2022-11-28 13:43:48 +01:00
- [x] Jellyfin
2022-11-26 20:24:08 +01:00
- [ ] Gitea
- [ ] Mastodon
2022-11-27 11:39:16 +01:00
- [ ] Minecraft server (Hyperworld v2)
2022-11-26 17:54:44 +01:00
- [ ] SSL for all subdomains / Services (Not just the main domain)
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)
- [Open port 80 and 443 on your router ](http://192.168.0.1/ ) (I use a Orange box with default IP)
2022-11-27 11:50:15 +01:00
- **All requirements for my Flask website (See [README.md ](bensuperpc_website/README.md ))**
2022-11-24 13:32:59 +01: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
```
2022-11-26 17:54:44 +01:00
### Get the SSL certificate
2022-11-24 13:32:59 +01:00
2022-11-28 13:52:28 +01:00
For all **bensuperpc.org** , you need to replace it with your domain, example: **bensuperpc.com**
```sh
find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/bensuperpc.org/bensuperpc.com/g'
```
2022-11-26 17:54:44 +01:00
Keep original config file
2022-11-24 13:32:59 +01:00
```sh
2022-11-28 13:52:28 +01:00
cp -r nginx-conf nginx-conf-original
2022-11-24 13:32:59 +01:00
```
2022-11-26 17:54:44 +01:00
Remove the old config file
2022-11-24 13:32:59 +01:00
2022-11-26 17:54:44 +01:00
```sh
rm -fr nginx-conf
```
2022-11-24 13:32:59 +01:00
2022-11-26 17:54:44 +01:00
Copy _nginx-conf-cert_ to _nginx-conf_ , for temporary use to get the SSL certificate
2022-11-24 13:32:59 +01:00
```sh
2022-11-26 17:54:44 +01:00
cp -r nginx-conf-cert nginx-conf
```
Replace certbot commands in _docker-compose.yml_ , and replace _bensuperpc.org_ by your domain
```sh
command: certonly --webroot --webroot-path=/var/www/html --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --domain www.bensuperpc.org --domain bensuperpc.org
```
With to get the SSL certificate
```sh
command: certonly --webroot --webroot-path=/var/www/html --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --staging --domain www.bensuperpc.org --domain bensuperpc.org
```
Run the docker-compose and exit with CTRL+C and when you have the SSL certificate
```sh
make start-at
```
Replace certbot commands in _docker-compose.yml_ to update and renew the SSL certificate
```sh
command: certonly --webroot --webroot-path=/var/www/html --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --force-renewal --domain www.bensuperpc.org --domain bensuperpc.org
```
Run the docker-compose to update and renew the SSL certificate and exit with CTRL+C when you have the SSL certificate
```sh
make start-at
```
Now you can replace the certbot commands in _docker-compose.yml_ with the original one
```sh
command: certonly --webroot --webroot-path=/var/www/html --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --domain www.bensuperpc.org --domain bensuperpc.org
```
2022-11-28 13:52:28 +01:00
Remove the cert config file
```sh
rm -fr nginx-conf
```
Copy _nginx-conf-original_ to _nginx-conf_ , for definitive use
```sh
cp -r nginx-conf-original nginx-conf
```
Now you start services
```sh
make start-at
```
2022-11-26 17:54:44 +01:00
### Flask website
You can follow the [README.md ](bensuperpc_website/README.md ) to install the Flask website.
### Wordpress website
For the Wordpress website, you can configure in GUI when you go to the website.
### 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
```
2022-11-26 17:54:44 +01:00
## URL
You can access to the website with:
- [bensuperpc.org ](https://bensuperpc.org ) and [www.bensuperpc.org ](https://www.bensuperpc.org ) (Wordpress for now)
- [flask.bensuperpc.org ](http://flask.bensuperpc.org ) and [www.flask.bensuperpc.org ](http://www.bensuperpc.org ) (Flask website, no SSL for now)
- [phpmyadmin.bensuperpc.org ](http://phpmyadmin.bensuperpc.org ) and [www.phpmyadmin.bensuperpc.org ](http://www.phpmyadmin.bensuperpc.org ) (PHPMyAdmin for MariaDB)
- [pgadmin.bensuperpc.org ](http://pgadmin.bensuperpc.org ) and [www.pgadmin.bensuperpc.org ](http://www.pgadmin.bensuperpc.org ) (PGAdmin for PostgreSQL)
- [qbittorrent.bensuperpc.org ](http://qbittorrent.bensuperpc.org ) and [www.qbittorrent.bensuperpc.org ](http://www.qbittorrent.bensuperpc.org ) (Qbittorrent)
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/ )
- [Digital Ocean ](https://www.digitalocean.com/ )
- [Digital Ocean - How To Install WordPress with Docker Compose ](https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-docker-compose )
- [PGAmin ](https://www.pgadmin.org/ )
2022-11-26 17:54:44 +01:00
- [Qbittorrent ](https://www.qbittorrent.org/ )
- [Jellyfin ](https://jellyfin.org/ )
- [Letsencrypt ](https://letsencrypt.org/ )
- [Certbot ](https://certbot.eff.org/ )
- [Nginx ](https://www.nginx.com/ )
- [UWSGI ](https://uwsgi-docs.readthedocs.io/en/latest/ )
2022-11-24 13:32:59 +01:00
## License
[License ](LICENSE )