From bd67d7d944178ff19e5b860ffdef8306fd27212e Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Sat, 24 Aug 2024 08:44:33 +0200 Subject: [PATCH] Remove linkstack Signed-off-by: Bensuperpc --- Makefile | 2 +- README.md | 2 +- .../caddy/config/bensuperpc.org/Caddyfile | 8 ----- infrastructure/homepage/config/services.yaml | 8 ++--- .../linkstack/docker-compose.linkstack.yml | 30 ------------------- infrastructure/linkstack/env/linkstack.env | 7 ----- 6 files changed, 6 insertions(+), 51 deletions(-) delete mode 100644 infrastructure/linkstack/docker-compose.linkstack.yml delete mode 100644 infrastructure/linkstack/env/linkstack.env diff --git a/Makefile b/Makefile index 45294c2..89a7ac0 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ DOCKER := docker -PROFILES := caddy wordpress adminer ghost syncthing uptime-kuma jellyfin qbittorrent psitransfer gitea it-tools privatebin linkstack homepage watchtower +PROFILES := caddy wordpress adminer ghost syncthing uptime-kuma jellyfin qbittorrent psitransfer gitea it-tools privatebin homepage watchtower PROFILE_CMD := $(addprefix --profile ,$(PROFILES)) # gitea-runner transmission diff --git a/README.md b/README.md index 1bb1e04..25ed1c3 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ To enable the gitea CI: https://medium.com/@lokanx/how-to-build-docker-container - [PsiTransfer](https://psitransfer.com/) - [It-tools](https://github.com/CorentinTh/it-tools) - [Privatebin](https://github.com/PrivateBin/PrivateBin) -- [Linkstack](https://linkstack.org) +- [ghost](https://ghost.org) - [Homepage Tuto](https://belginux.com/installer-homepage-avec-docker/) - [Imagisphe](https://imagisphe.re/) diff --git a/infrastructure/caddy/config/bensuperpc.org/Caddyfile b/infrastructure/caddy/config/bensuperpc.org/Caddyfile index 75b151c..e0221bb 100644 --- a/infrastructure/caddy/config/bensuperpc.org/Caddyfile +++ b/infrastructure/caddy/config/bensuperpc.org/Caddyfile @@ -101,14 +101,6 @@ pastebin.bensuperpc.org { redir https://privatebin.bensuperpc.org permanent } -linkstack.bensuperpc.org { - reverse_proxy linkstack:443 { - transport http { - tls_insecure_skip_verify - } - } -} - homepage.bensuperpc.org { reverse_proxy homepage:3000 } diff --git a/infrastructure/homepage/config/services.yaml b/infrastructure/homepage/config/services.yaml index 1af2de3..c40fed9 100644 --- a/infrastructure/homepage/config/services.yaml +++ b/infrastructure/homepage/config/services.yaml @@ -7,10 +7,10 @@ icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/wordpress.png href: https://www.bensuperpc.org/ description: Wordpress - - linkstack: - icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/linkstack.png - href: https://linkstack.bensuperpc.org/ - description: Linkstack + - ghost: + icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/ghost.png + href: https://ghost.bensuperpc.org/ + description: Ghost - uptime-kuma: icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/uptime-kuma.png href: https://uptimekuma.bensuperpc.org/ diff --git a/infrastructure/linkstack/docker-compose.linkstack.yml b/infrastructure/linkstack/docker-compose.linkstack.yml deleted file mode 100644 index 9dcb75b..0000000 --- a/infrastructure/linkstack/docker-compose.linkstack.yml +++ /dev/null @@ -1,30 +0,0 @@ -services: - # linkstack - linkstack: - image: linkstackorg/linkstack:latest - container_name: linkstack - profiles: - - linkstack - restart: on-failure:5 - depends_on: - - caddy - env_file: - - ./linkstack/env/linkstack.env - volumes: - - linkstack_data:/htdocs - networks: - - infra-network - security_opt: - - no-new-privileges:true - deploy: - resources: - limits: - cpus: '0.5' - memory: 512M - reservations: - cpus: '0.001' - memory: 20M - -volumes: - linkstack_data: - name: linkstack_data \ No newline at end of file diff --git a/infrastructure/linkstack/env/linkstack.env b/infrastructure/linkstack/env/linkstack.env deleted file mode 100644 index 9cf68f3..0000000 --- a/infrastructure/linkstack/env/linkstack.env +++ /dev/null @@ -1,7 +0,0 @@ -HTTP_SERVER_NAME="linkstack.bensuperpc.org" -HTTPS_SERVER_NAME="linkstack.bensuperpc.org" -TZ="Europe/Paris" -PHP_MEMORY_LIMIT="512M" -UPLOAD_MAX_FILESIZE="8M" -LOG_LEVEL="info" -SERVER_ADMIN="bensuperpc@gmail.com"