diff --git a/Caddyfile b/Caddyfile deleted file mode 100644 index 9c4948b..0000000 --- a/Caddyfile +++ /dev/null @@ -1,35 +0,0 @@ -bensuperpc.org { - root * /var/www/html - php_fastcgi wordpress:9000 - file_server - encode gzip - - @disallowed { - path /xmlrpc.php - path *.sql - path /wp-content/uploads/*.php - } - rewrite @disallowed '/index.php' - - respond /uploads/*.php 404 -} - -www.bensuperpc.org { - redir https://{host}{uri} -} - -bensuperpc.fr { - redir https://{host}{uri} -} - -www.bensuperpc.fr { - redir https://{host}{uri} -} - -bensuperpc.com { - redir https://{host}{uri} -} - -www.bensuperpc.com { - redir https://{host}{uri} -} diff --git a/Makefile b/Makefile index 3ea0371..46e1d1d 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ #// |_| |_| // #////////////////////////////////////////////////////////////// #// // -#// Infrastructur, 2022 // +#// Script, 2022 // #// Created: 14, April, 2022 // -#// Modified: 10, April, 2023 // +#// Modified: 17, March, 2023 // #// file: - // #// - // #// Source: // @@ -20,7 +20,7 @@ DOCKER := docker -PROFILES := webserver database wordpress +PROFILES := wp_db wordpress webserver certbot phpmyadmin qbittorrent jellyfin PROFILE_CMD := $(addprefix --profile ,$(PROFILES)) @@ -68,7 +68,6 @@ state: .PHONY: update update: - git submodule update --init --recursive --remote git pull --recurse-submodules --all --progress docker compose $(COMPOSE_FILES) $(PROFILES_CMD) pull diff --git a/README.md b/README.md index c65d294..d047c67 100644 --- a/README.md +++ b/README.md @@ -2,24 +2,23 @@ _My personal infrastructure for my servers and services._ -**I moved to caddy inetead of nginx, you can find the old version before this commit:**b98fca7af8954770feec0cd962d35f47bde0d5d2** - ## About This is my infrastructure. It's a collection of scripts and configuration files that I use to manage my servers and services. -It uses ~~Nginx ~~ caddy and docker-compose to run my services (And many other things). +It uses Nginx and docker-compose to run my services (And many other things). 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. ## Features -- [x] caddy 2 reverse proxy +- [x] Nginx reverse proxy - [x] Docker / docker-compose -- [x] ~~Letsencrypt / Certbot~~ (Caddy) -- [x] Wordpress (Via FASTCGI/caddy) +- [x] Letsencrypt / Certbot +- [x] Wordpress (Via FASTCGI/NGINX) - [x] PHPMyAdmin (MariaDB) -- [ ] Qbittorrent -- [ ] Jellyfin +- [x] PGAdmin (PostgreSQL) +- [x] Qbittorrent +- [x] Jellyfin - [ ] Gitea - [ ] Mastodon - [ ] Minecraft server (Hyperworld v2) @@ -59,18 +58,94 @@ For all **bensuperpc.org**, you need to replace it with your domain, example: ** find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/bensuperpc.org/bensuperpc.com/g' ``` -And then, caddy will generate the certificate for you and renew it automatically :D (It's easier than certbot and nginx) - -### Configure the infrastructure - -You must create a file named `.env` with the following content: +Keep original config file ```sh -MARIADB_ROOT_PASSWORD= -MARIADB_USER= -MARIADB_PASSWORD= +cp -r nginx/conf.d nginx/conf.d-original ``` +Remove the old config file + +```sh +rm -fr nginx/nginx-conf +``` + +Copy _nginx-conf-cert_ to _nginx-conf_, for temporary use to get the SSL certificate + +```sh +cp -r nginx/conf.d-cert nginx/conf.d +``` + +Replace certbot commands in _docker-compose.yml_, and replace _bensuperpc.org_ by your domain + +```yaml + command: > + certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --webroot + --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org + --webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org +``` + +With to get the SSL certificate + +```yaml + command: > + certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --staging --webroot + --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org + --webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.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 --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --force-renewal --webroot + --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org + --webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.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 + +```yaml + command: > + certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --webroot + --webroot-path=/var/www/wordpress --domain bensuperpc.org --domain www.bensuperpc.org + --webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org +``` + +Remove the cert config file + +```sh +rm -fr nginx/conf.d +``` + +Copy _nginx-conf-original_ to _nginx-conf_, for definitive use + +```sh +cp -r nginx/conf.d-original nginx/conf.d +``` + +Now you start services + +```sh +make start-at +``` + +### 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. @@ -94,6 +169,9 @@ make stop You can access to the website with: - [bensuperpc.org](https://bensuperpc.org) and [www.bensuperpc.org](https://www.bensuperpc.org) (Wordpress 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) ## Build with @@ -104,8 +182,8 @@ You can access to the website with: - [Docker](https://www.docker.com/) - [Docker Compose](https://docs.docker.com/compose/) - [Docker Hub](https://hub.docker.com/) -- [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) +- [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/) - [Qbittorrent](https://www.qbittorrent.org/) - [Jellyfin](https://jellyfin.org/) diff --git a/old_enginx/docker-compose.certbot.yml b/docker-compose.certbot.yml similarity index 100% rename from old_enginx/docker-compose.certbot.yml rename to docker-compose.certbot.yml diff --git a/old_enginx/docker-compose.divers.yml b/docker-compose.divers.yml similarity index 100% rename from old_enginx/docker-compose.divers.yml rename to docker-compose.divers.yml diff --git a/old_enginx/docker-compose.network.yml b/docker-compose.network.yml similarity index 100% rename from old_enginx/docker-compose.network.yml rename to docker-compose.network.yml diff --git a/old_enginx/docker-compose.nginx.yml b/docker-compose.nginx.yml similarity index 100% rename from old_enginx/docker-compose.nginx.yml rename to docker-compose.nginx.yml diff --git a/old_enginx/docker-compose.volume.yml b/docker-compose.volume.yml similarity index 100% rename from old_enginx/docker-compose.volume.yml rename to docker-compose.volume.yml diff --git a/old_enginx/docker-compose.wordpress.yml b/docker-compose.wordpress.yml similarity index 100% rename from old_enginx/docker-compose.wordpress.yml rename to docker-compose.wordpress.yml diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 0883b60..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,89 +0,0 @@ -version: '3.7' -# https://minhcung.me/how-to-start-wordpress-with-caddy-using-docker-compose-3d31bb9ef88b -services: - database: - image: mariadb:latest - container_name: database - profiles: - - database - volumes: - - database:/var/lib/mysql:rw - restart: always - env_file: - - env/mariadb.env - environment: - MYSQL_DATABASE: blog_wp - command: '--default-authentication-plugin=mysql_native_password' - networks: - - blog-network - # Wordpress - wordpress: - depends_on: - - database - image: wordpress:6.2-fpm-alpine - container_name: wordpress - profiles: - - wordpress - restart: always - user: "root:root" - env_file: - - env/wordpress.env - volumes: - - ./php.ini:/usr/local/etc/php/conf.d/custom.ini:ro - - wordpress:/var/www/html:rw - networks: - - blog-network - # Webserver - caddy: - image: caddy:alpine - container_name: webserver - profiles: - - webserver - ports: - - 80:80/tcp - - 80:80/udp - - 443:443/tcp - - 443:443/udp - volumes: - - wordpress:/var/www/html:rw - - caddy_data:/data:rw - - caddy_config:/config:rw - - ./Caddyfile:/etc/caddy/Caddyfile:ro - networks: - - blog-network -# phpmyadmin: -# image: phpmyadmin:5.2.0 -# container_name: phpmyadmin -# profiles: -# - phpmyadmin -# restart: always -# env_file: -# - env/phpmyadmin.env -# ports: -# - 8080:80 -# depends_on: -# - database -# networks: -# - blog-network -# security_opt: -# - no-new-privileges:true -# - seccomp:unconfined -# - apparmor:unconfined -# cap_drop: -# - ALL -# cap_add: -# - CHOWN -networks: - blog-network: - driver: bridge - name: blog-network - -volumes: - database: - name: database - wordpress: - name: wordpress - caddy_data: - name: caddy_data - caddy_config: - name: caddy_config diff --git a/old_enginx/nginx/conf.d-cert/jellyfin.conf b/nginx/conf.d-cert/jellyfin.conf similarity index 100% rename from old_enginx/nginx/conf.d-cert/jellyfin.conf rename to nginx/conf.d-cert/jellyfin.conf diff --git a/old_enginx/nginx/conf.d-cert/wordpress.conf b/nginx/conf.d-cert/wordpress.conf similarity index 100% rename from old_enginx/nginx/conf.d-cert/wordpress.conf rename to nginx/conf.d-cert/wordpress.conf diff --git a/old_enginx/nginx/conf.d/jellyfin.conf b/nginx/conf.d/jellyfin.conf similarity index 100% rename from old_enginx/nginx/conf.d/jellyfin.conf rename to nginx/conf.d/jellyfin.conf diff --git a/old_enginx/nginx/conf.d/minecraft.conf b/nginx/conf.d/minecraft.conf similarity index 100% rename from old_enginx/nginx/conf.d/minecraft.conf rename to nginx/conf.d/minecraft.conf diff --git a/old_enginx/nginx/conf.d/phpmyadmin.conf b/nginx/conf.d/phpmyadmin.conf similarity index 100% rename from old_enginx/nginx/conf.d/phpmyadmin.conf rename to nginx/conf.d/phpmyadmin.conf diff --git a/old_enginx/nginx/conf.d/qbittorrent.conf b/nginx/conf.d/qbittorrent.conf similarity index 100% rename from old_enginx/nginx/conf.d/qbittorrent.conf rename to nginx/conf.d/qbittorrent.conf diff --git a/old_enginx/nginx/conf.d/sub/cache-fastcgi.conf b/nginx/conf.d/sub/cache-fastcgi.conf similarity index 100% rename from old_enginx/nginx/conf.d/sub/cache-fastcgi.conf rename to nginx/conf.d/sub/cache-fastcgi.conf diff --git a/old_enginx/nginx/conf.d/sub/cache-proxy.conf b/nginx/conf.d/sub/cache-proxy.conf similarity index 100% rename from old_enginx/nginx/conf.d/sub/cache-proxy.conf rename to nginx/conf.d/sub/cache-proxy.conf diff --git a/old_enginx/nginx/conf.d/sub/cache-uwsgi.conf b/nginx/conf.d/sub/cache-uwsgi.conf similarity index 100% rename from old_enginx/nginx/conf.d/sub/cache-uwsgi.conf rename to nginx/conf.d/sub/cache-uwsgi.conf diff --git a/old_enginx/nginx/conf.d/sub/gzip.conf b/nginx/conf.d/sub/gzip.conf similarity index 100% rename from old_enginx/nginx/conf.d/sub/gzip.conf rename to nginx/conf.d/sub/gzip.conf diff --git a/old_enginx/nginx/conf.d/sub/options-ssl-nginx.conf b/nginx/conf.d/sub/options-ssl-nginx.conf similarity index 100% rename from old_enginx/nginx/conf.d/sub/options-ssl-nginx.conf rename to nginx/conf.d/sub/options-ssl-nginx.conf diff --git a/old_enginx/nginx/conf.d/wordpress.conf b/nginx/conf.d/wordpress.conf similarity index 100% rename from old_enginx/nginx/conf.d/wordpress.conf rename to nginx/conf.d/wordpress.conf diff --git a/old_enginx/nginx/nginx.conf b/nginx/nginx.conf similarity index 100% rename from old_enginx/nginx/nginx.conf rename to nginx/nginx.conf diff --git a/php.ini b/php.ini deleted file mode 100644 index 2d4f176..0000000 --- a/php.ini +++ /dev/null @@ -1,3 +0,0 @@ -memory_limit = 512M -upload_max_filesize = 128M -post_max_size = 128M