mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2026-07-26 21:08:10 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f725608ca | |||
| 6c21e5fd5e |
@@ -22,14 +22,14 @@ jobs:
|
|||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout Code"
|
- name: "Checkout Code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
submodules: "recursive"
|
submodules: "recursive"
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: "Check compose"
|
- name: "Check compose"
|
||||||
run: make check
|
run: make check
|
||||||
- name: "Update server image"
|
- name: "Update server image"
|
||||||
run: make image-update
|
run: make pull
|
||||||
- name: "Build server"
|
- name: "Build server"
|
||||||
run: make build
|
run: make build
|
||||||
# - name: "Start server"
|
# - name: "Start server"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout Code"
|
- name: "Checkout Code"
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CI_TOKEN }}
|
token: ${{ secrets.CI_TOKEN }}
|
||||||
repository: ${{ github.repository }}
|
repository: ${{ github.repository }}
|
||||||
|
|||||||
+4
-3
@@ -29,8 +29,9 @@ COMPOSE_DIR ?= --project-directory ./$(PROJECT_DIRECTORY)
|
|||||||
|
|
||||||
UID ?= 1000
|
UID ?= 1000
|
||||||
GID ?= 1000
|
GID ?= 1000
|
||||||
|
TZ ?= Europe/Paris
|
||||||
|
|
||||||
ENV_ARG_VAR ?= PUID=$(UID) PGID=$(GID)
|
ENV_ARG_VAR ?= PUID=$(UID) PGID=$(GID) TZ=$(TZ)
|
||||||
|
|
||||||
DOCKER_COMPOSE_COMMAND ?= $(ENV_ARG_VAR) $(DOCKER_EXEC) compose $(COMPOSE_DIR) $(COMPOSE_FILES) $(PROFILE_CMD)
|
DOCKER_COMPOSE_COMMAND ?= $(ENV_ARG_VAR) $(DOCKER_EXEC) compose $(COMPOSE_DIR) $(COMPOSE_FILES) $(PROFILE_CMD)
|
||||||
|
|
||||||
@@ -66,11 +67,11 @@ git-update:
|
|||||||
git pull --recurse-submodules --all --progress
|
git pull --recurse-submodules --all --progress
|
||||||
|
|
||||||
.PHONY: update
|
.PHONY: update
|
||||||
update: image-update git-update
|
update: git-update
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
docker system prune -f
|
$(ENV_ARG_VAR) $(DOCKER_EXEC) system prune -f
|
||||||
|
|
||||||
.PHONY: purge
|
.PHONY: purge
|
||||||
purge:
|
purge:
|
||||||
|
|||||||
@@ -1,36 +1,30 @@
|
|||||||
# Infrastructure
|
# Infrastructure
|
||||||
|
|
||||||
_Open source, decentralized and self-hosted infrastructure for many local services._
|
_Open source, decentralized and self-hosted infrastructure for many local services and authentication with Authelia._
|
||||||
|
|
||||||
## About
|
|
||||||
|
|
||||||
It uses caddy 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
|
## Features
|
||||||
|
|
||||||
- [x] caddy 2 HTTP/S reverse proxy
|
- [x] caddy 2 HTTP/S reverse proxy
|
||||||
|
- [x] Authelia (SSO / authentication middleware)
|
||||||
|
- [x] Open-WebUI + Ollama (Local chatGPT)
|
||||||
|
- [x] qbittorrent and transmission (Torrent client/server)
|
||||||
- [x] Docker / docker-compose
|
- [x] Docker / docker-compose
|
||||||
- [x] Homepage (Dashboard)
|
- [x] Homepage (Dashboard)
|
||||||
|
- [x] SearXNG (Self-hosted search engine)
|
||||||
- [x] Jellyfin (Eg Netflix, Disney+)
|
- [x] Jellyfin (Eg Netflix, Disney+)
|
||||||
- [x] Forgejo (Git server, fork of Gitea)
|
- [x] Forgejo (Git server, fork of Gitea)
|
||||||
- [x] Uptime Kuma (Monitoring)
|
- [x] Uptime Kuma (Monitoring)
|
||||||
- [x] Argus (Application update monitoring)
|
- [x] Argus (Application update monitoring)
|
||||||
- [x] qbittorrent and transmission (Torrent client/server)
|
|
||||||
- [x] SyncThing (File synchronization)
|
- [x] SyncThing (File synchronization)
|
||||||
- [x] Dufs (File server)
|
- [x] Dufs (File server)
|
||||||
- [x] PsiTransfer, ProjectSend, Picoshare (File sharing)
|
- [x] PsiTransfer, ProjectSend, Picoshare (File sharing)
|
||||||
- [x] it-tools, omni-tools and cyberchef (Tools for IT)
|
- [x] it-tools, omni-tools and cyberchef (Tools for IT)
|
||||||
- [x] Open-WebUI + Ollama (Local chatGPT)
|
- [x] Privatebin
|
||||||
- [x] Privatebin (Pastebin)
|
|
||||||
- [x] Memos (Note-taking)
|
- [x] Memos (Note-taking)
|
||||||
- [x] Stirling PDF (PDF tools)
|
- [x] Stirling PDF (PDF tools)
|
||||||
- [x] Wordpress (Via FASTCGI/caddy)
|
- [x] Wordpress (Via FASTCGI/caddy)
|
||||||
- [X] Satisfactory
|
- [x] Dependency-Track (SBOM / vulnerability tracking)
|
||||||
- [x] 7 days to die
|
- [X] Game (Satisfactory, Minecraft, 7 Days to Die, Team Fortress 2 etc...)
|
||||||
- [x] Minecraft
|
|
||||||
- [x] Team Fortress 2
|
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
@@ -50,7 +44,7 @@ The homepage is a dashboard with many widgets and services.
|
|||||||
- [Docker Compose](https://docs.docker.com/compose/install/)
|
- [Docker Compose](https://docs.docker.com/compose/install/)
|
||||||
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
||||||
- [Web domain](https://www.ovh.com/world/domains/) (I use OVH)
|
- [Web domain](https://www.ovh.com/world/domains/) (I use OVH)
|
||||||
- [Open port 80, 443, 22, 2222 and 5555 on your router](http://192.168.1.1/)
|
- [Open port 80, 443, 22 and 2222 on your router](http://192.168.1.1/)
|
||||||
- For games server, you need to open these ports (7777, 8888, 25565, 26900, 26901, 26903)
|
- For games server, you need to open these ports (7777, 8888, 25565, 26900, 26901, 26903)
|
||||||
|
|
||||||
List of ports used by the services in this infrastructure:
|
List of ports used by the services in this infrastructure:
|
||||||
@@ -87,7 +81,29 @@ Go to the folder
|
|||||||
cd infrastructure
|
cd infrastructure
|
||||||
```
|
```
|
||||||
|
|
||||||
Change services you want to enable in the [Makefile](Makefile) file, by default all services are enabled (games servers included).
|
### Start the infrastructure
|
||||||
|
|
||||||
|
Start the website with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make up
|
||||||
|
```
|
||||||
|
|
||||||
|
Stop the website with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make stop
|
||||||
|
```
|
||||||
|
|
||||||
|
Remove containers with:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make down
|
||||||
|
```
|
||||||
|
|
||||||
|
Services are enabled via **preset configuration files** in the [`presets/`](presets/) directory.
|
||||||
|
|
||||||
|
The active presets are declared in the [`Makefile`](Makefile) via the `CONFIGS` variable, for example, `CONFIGS := chatgpt` loads `presets/chatgpt.conf` which activates the `main_infrastructure`, `caddy`, `openssh`, and `openwebui` profiles.
|
||||||
|
|
||||||
### Configure the domain
|
### Configure the domain
|
||||||
|
|
||||||
@@ -97,7 +113,7 @@ 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/mydomain.com/g'
|
find . \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/bensuperpc.org/mydomain.com/g'
|
||||||
```
|
```
|
||||||
|
|
||||||
Check if all bensuperpc.* are replaced by your domain in [Caddyfile](caddy/services/wordpress/Caddyfile)
|
Check if all bensuperpc.* are replaced by your domain in [Caddyfile](infrastructure/services/caddy/config/Caddyfile)
|
||||||
|
|
||||||
And then, caddy will generate the certificate for you and renew it automatically :D
|
And then, caddy will generate the certificate for you and renew it automatically :D
|
||||||
|
|
||||||
@@ -105,26 +121,29 @@ And then, caddy will generate the certificate for you and renew it automatically
|
|||||||
| ------------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
|
| ------------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
|
||||||
| [bensuperpc.org](https://bensuperpc.org) | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
| [bensuperpc.org](https://bensuperpc.org) | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
||||||
| [www.bensuperpc.org](https://www.bensuperpc.org) | Main | Homepage |
|
| [www.bensuperpc.org](https://www.bensuperpc.org) | Main | Homepage |
|
||||||
| [open-webui.bensuperpc.org](https://open-webui.bensuperpc.org) | Sub | For local chatGPT |
|
| [openwebui.bensuperpc.org](https://openwebui.bensuperpc.org) | Sub | For local chatGPT with ollama and openweb-ui |
|
||||||
| [wordpress.bensuperpc.org](https://wordpress.bensuperpc.org) | Sub | Wordpress website |
|
| [authelia.bensuperpc.org](https://authelia.bensuperpc.org) | Sub | Authelia for authentication |
|
||||||
| [uptimekuma.bensuperpc.org](https://uptimekuma.bensuperpc.org) | Sub | Uptime Kuma for monitoring |
|
| [uptimekuma.bensuperpc.org](https://uptimekuma.bensuperpc.org) | Sub | Uptime Kuma for monitoring |
|
||||||
| [qbittorrent.bensuperpc.org](https://qbittorrent.bensuperpc.org) | Sub | Torrent client/server |
|
| [qbittorrent.bensuperpc.org](https://qbittorrent.bensuperpc.org) | Sub | Torrent client/server |
|
||||||
|
| [dozzle.bensuperpc.org](https://dozzle.bensuperpc.org) | Sub | Dozzle for docker logs |
|
||||||
| [transmission.bensuperpc.org](https://transmission.bensuperpc.org) | Sub | Torrent client/server |
|
| [transmission.bensuperpc.org](https://transmission.bensuperpc.org) | Sub | Torrent client/server |
|
||||||
| [forgejo.bensuperpc.org](https://forgejo.bensuperpc.org/) | Sub | Fork of Gitea for git |
|
| [forgejo.bensuperpc.org](https://forgejo.bensuperpc.org/) | Sub | Fork of Gitea for git |
|
||||||
| [git.bensuperpc.org](https://git.bensuperpc.org) | Sub | Fork of Gitea for git |
|
| [git.bensuperpc.org](https://git.bensuperpc.org) | Sub | Fork of 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 |
|
| [jellyfin.bensuperpc.org](https://jellyfin.bensuperpc.org) | Sub | Jellyfin for media server |
|
||||||
| [syncthing.bensuperpc.org](https://syncthing.bensuperpc.org) | Sub | SyncThing for file synchronization |
|
| [syncthing.bensuperpc.org](https://syncthing.bensuperpc.org) | Sub | SyncThing for file synchronization |
|
||||||
| [psitransfer.bensuperpc.org](https://psitransfer.bensuperpc.org) | Sub | PsiTransfer for file sharing |
|
| [psitransfer.bensuperpc.org](https://psitransfer.bensuperpc.org) | Sub | PsiTransfer for file sharing |
|
||||||
| [it-tools.bensuperpc.org](https://it-tools.bensuperpc.org) | Sub | Tools for IT |
|
| [it-tools.bensuperpc.org](https://it-tools.bensuperpc.org) | Sub | Tools for IT |
|
||||||
| [omni-tools.bensuperpc.org](https://omni-tools.bensuperpc.org) | Sub | Tools for IT |
|
| [omni-tools.bensuperpc.org](https://omni-tools.bensuperpc.org) | Sub | Tools for IT |
|
||||||
| [privatebin.bensuperpc.org](https://privatebin.bensuperpc.org) | Sub | Pastebin |
|
| [privatebin.bensuperpc.org](https://privatebin.bensuperpc.org) | Sub | Privatebin |
|
||||||
| [projectsend.bensuperpc.org](https://projectsend.bensuperpc.org) | Sub | ProjectSend for file sharing |
|
| [projectsend.bensuperpc.org](https://projectsend.bensuperpc.org) | Sub | ProjectSend for file sharing |
|
||||||
| [picoshare.bensuperpc.org](https://picoshare.bensuperpc.org) | Sub | Picoshare for file sharing |
|
| [picoshare.bensuperpc.org](https://picoshare.bensuperpc.org) | Sub | Picoshare for file sharing |
|
||||||
| [dufs.bensuperpc.org](https://dufs.bensuperpc.org) | Sub | Dufs for file sharing |
|
| [dufs.bensuperpc.org](https://dufs.bensuperpc.org) | Sub | Dufs for file sharing |
|
||||||
| [memos.bensuperpc.org](https://memos.bensuperpc.org) | Sub | Memos note-taking app |
|
| [memos.bensuperpc.org](https://memos.bensuperpc.org) | Sub | Memos note-taking app |
|
||||||
| [stirlingpdf.bensuperpc.org](https://stirlingpdf.bensuperpc.org) | Sub | Stirling PDF tools |
|
| [stirlingpdf.bensuperpc.org](https://stirlingpdf.bensuperpc.org) | Sub | Stirling PDF tools |
|
||||||
| [argus.bensuperpc.org](https://argus.bensuperpc.org) | Sub | Argus for monitoring application updates |
|
| [argus.bensuperpc.org](https://argus.bensuperpc.org) | Sub | Argus for monitoring application updates |
|
||||||
|
| [searxng.bensuperpc.org](https://searxng.bensuperpc.org) | Sub | SearXNG self-hosted search engine |
|
||||||
|
| [dependency-track.bensuperpc.org](https://dependency-track.bensuperpc.org) | Sub | SBOM / vulnerability analysis |
|
||||||
|
| [wordpress.bensuperpc.org](https://wordpress.bensuperpc.org) | Sub | Wordpress website |
|
||||||
|
|
||||||
### Configure the infrastructure
|
### Configure the infrastructure
|
||||||
|
|
||||||
@@ -146,27 +165,52 @@ For [caddy_backup.env](infrastructure/services/caddy/env/caddy_backup.env) file,
|
|||||||
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Wordpress
|
On [caddy.env](infrastructure/services/caddy/env/caddy.env) file, you need to update some variables, like the main domain, mail domain and scheme (http or https).
|
||||||
|
|
||||||
For the [wordpress.env](infrastructure/services/wordpress/env/wordpress.env) file, you need to change the password and user for the database.
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
WORDPRESS_DB_USER=bensuperpc
|
MAIN_DOMAIN=bensuperpc.org
|
||||||
WORDPRESS_DB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
|
MAIL_DOMAIN=bensuperpc@gmail.com
|
||||||
|
# Scheme
|
||||||
|
SCHEME=https
|
||||||
|
# ignore_loaded_certs off
|
||||||
|
AUTO_HTTPS_OPTIONS=ignore_loaded_certs
|
||||||
```
|
```
|
||||||
|
|
||||||
For [wordpress_db.env](infrastructure/services/wordpress/env/wordpress_db.env) file, you need to change the password(s) and user for the database.
|
#### Authelia
|
||||||
|
|
||||||
|
For [authelia.env](infrastructure/services/authelia/env/authelia.env) file, you need to change the password(s) and secret key:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
MARIADB_ROOT_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
AUTHELIA_IDENTITY_VALIDATION_RESET_PASSWORD_JWT_SECRET=ht87MVnXkXhBpDkMUHqKDqdg8UGBJt+Fx5jNIqXnN2k=
|
||||||
MARIADB_USER=bensuperpc
|
AUTHELIA_SESSION_SECRET=nsvbXKGRXVZUCUkOapntlq/Zh+d75WacTK5Jgyh8zYk=
|
||||||
MARIADB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
|
AUTHELIA_STORAGE_ENCRYPTION_KEY=aWeIT74xIhGVd9nUOr4YTToTl5rpBEbzc/fv4jemuos=
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_HOST=authelia-postgres
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_PORT=5432
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_DATABASE=authelia_db
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_USERNAME=authelia
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_PASSWORD=sAdkxFW6k3GiMOrlBpl6OV76eb9cQz/uk95jmA2UpI8=
|
||||||
```
|
```
|
||||||
|
|
||||||
For [wordpress_backup.env](infrastructure/services/wordpress/env/wordpress_backup.env) file, you need to change the password(s) for the restic backup.
|
Same for [authelia_postgres.env](infrastructure/services/authelia/env/authelia_postgres.env) file, you need to change the password(s) and user for the database.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
POSTGRES_USER=authelia
|
||||||
|
POSTGRES_PASSWORD=sAdkxFW6k3GiMOrlBpl6OV76eb9cQz/uk95jmA2UpI8=
|
||||||
|
POSTGRES_DB=authelia_db
|
||||||
|
```
|
||||||
|
|
||||||
|
You also need to update [users_database.yml](infrastructure/services/authelia/config/users_database.yml)
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker run --rm authelia/authelia:latest authelia crypto hash generate argon2 --password 'MyPassword'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Dozzle
|
||||||
|
|
||||||
|
To generate a new user for dozzle, you can use the following command [users.yml](infrastructure/services/dozzle/config/users.yml):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker run -it --rm amir20/dozzle generate bensuperpc --password mypassword --email bensuperpc@gmail.com --name "bensuperpc"
|
||||||
```
|
```
|
||||||
|
|
||||||
#### PsiTransfer
|
#### PsiTransfer
|
||||||
@@ -233,37 +277,32 @@ USER_PASSWORD=rdUwf36C11PLmpU9Lvq7tP5pfFBKAuCh
|
|||||||
|
|
||||||
#### Open-WebUI
|
#### Open-WebUI
|
||||||
|
|
||||||
For [open-webui.env](infrastructure/services/open-webui/env/open-webui.env) file, entirely optional.
|
For [open-webui.env](infrastructure/services/open-webui/env/open-webui.env) file, you must change the secret key for the webui and configure its PostgreSQL backend.
|
||||||
|
|
||||||
To download the model, you can use:
|
```sh
|
||||||
|
WEBUI_SECRET_KEY=7d83b15a417d090ba5c6b899270a05dd215c60848354c0c7574226d6ff02f39e
|
||||||
|
```
|
||||||
|
|
||||||
|
Also update [openwebui-postgres.env](infrastructure/services/open-webui/env/openwebui-postgres.env) with your own credentials.
|
||||||
|
|
||||||
|
To download the model, through open-webui GUI or you can use the following command:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker exec -it ollama ollama run deepseek-r1:8b
|
docker exec -it ollama ollama run deepseek-r1:8b
|
||||||
```
|
```
|
||||||
|
|
||||||
### Start the infrastructure
|
#### Dependency-Track
|
||||||
|
|
||||||
Start the website with:
|
For [dependency-track.env](infrastructure/services/dependency-track/env/dependency-track.env) file, you need to set the database credentials and the API server URL.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
make start-detached
|
POSTGRES_USER=dtrack
|
||||||
|
POSTGRES_PASSWORD=<your_password>
|
||||||
|
POSTGRES_DB=dtrack_db
|
||||||
|
ALPINE_DATA_DIRECTORY=/data
|
||||||
```
|
```
|
||||||
|
|
||||||
Stop the website with:
|
The frontend is available at `https://dependency-track.bensuperpc.org` and the API server at `/api/*`. Default credentials are `admin` / `admin`, **change them on first login**.
|
||||||
|
|
||||||
```sh
|
|
||||||
make stop
|
|
||||||
```
|
|
||||||
|
|
||||||
Remove countainers with:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
make down
|
|
||||||
```
|
|
||||||
|
|
||||||
You can disable some services by removing the service name in PROFILES variable in the [Makefile](Makefile) file.
|
|
||||||
|
|
||||||
To enable the gitea CI: [how-to-build-docker-containers-using-gitea-runners](https://medium.com/@lokanx/how-to-build-docker-containers-using-gitea-runners-600729555e07)
|
|
||||||
|
|
||||||
### Homepage
|
### Homepage
|
||||||
|
|
||||||
@@ -335,7 +374,7 @@ This infrastructure uses docker volumes to store data, all configuration/data fo
|
|||||||
|
|
||||||
### SSH access
|
### SSH access
|
||||||
|
|
||||||
The default port for ssh/rsync is is 2222.
|
The default port for SSH/rsync is 2222.
|
||||||
|
|
||||||
You can access to the server with:
|
You can access to the server with:
|
||||||
|
|
||||||
@@ -347,6 +386,72 @@ ssh -p 2222 admin@bensuperpc.org
|
|||||||
|
|
||||||
To activate the alternative webui theme (VueTorrent), you need to go in the qbittorrent settings, then in the `webui` section, check the `Use alternative webui` and add `/vuetorrent` to text field.
|
To activate the alternative webui theme (VueTorrent), you need to go in the qbittorrent settings, then in the `webui` section, check the `Use alternative webui` and add `/vuetorrent` to text field.
|
||||||
|
|
||||||
|
#### Local testing
|
||||||
|
|
||||||
|
If you want to test the infrastructure locally, you can add these lines in your `/etc/hosts` file:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
127.0.0.1 openwebui.bensuperpc.org
|
||||||
|
127.0.0.1 authelia.bensuperpc.org
|
||||||
|
127.0.0.1 memos.bensuperpc.org
|
||||||
|
127.0.0.1 stirlingpdf.bensuperpc.org
|
||||||
|
127.0.0.1 public.bensuperpc.org
|
||||||
|
127.0.0.1 private.bensuperpc.org
|
||||||
|
127.0.0.1 jellyfin.bensuperpc.org
|
||||||
|
127.0.0.1 syncthing.bensuperpc.org
|
||||||
|
127.0.0.1 psitransfer.bensuperpc.org
|
||||||
|
127.0.0.1 projectsend.bensuperpc.org
|
||||||
|
127.0.0.1 picoshare.bensuperpc.org
|
||||||
|
127.0.0.1 dufs.bensuperpc.org
|
||||||
|
127.0.0.1 it-tools.bensuperpc.org
|
||||||
|
127.0.0.1 omni-tools.bensuperpc.org
|
||||||
|
127.0.0.1 privatebin.bensuperpc.org
|
||||||
|
127.0.0.1 forgejo.bensuperpc.org
|
||||||
|
127.0.0.1 git.bensuperpc.org
|
||||||
|
127.0.0.1 qbittorrent.bensuperpc.org
|
||||||
|
127.0.0.1 transmission.bensuperpc.org
|
||||||
|
127.0.0.1 uptimekuma.bensuperpc.org
|
||||||
|
127.0.0.1 wordpress.bensuperpc.org
|
||||||
|
127.0.0.1 searxng.bensuperpc.org
|
||||||
|
127.0.0.1 dependency-track.bensuperpc.org
|
||||||
|
127.0.0.1 homepage.bensuperpc.org
|
||||||
|
```
|
||||||
|
|
||||||
|
Then update the [caddy.env](infrastructure/services/caddy/env/caddy.env) file with your local domain to disable the letsencrypt certificate generation and auto redirect to https:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
MAIN_DOMAIN=bensuperpc.org
|
||||||
|
# Scheme
|
||||||
|
SCHEME=https
|
||||||
|
# ignore_loaded_certs off
|
||||||
|
AUTO_HTTPS_OPTIONS=ignore_loaded_certs
|
||||||
|
```
|
||||||
|
|
||||||
|
And remove all the `import authelia_middleware` in the caddyfiles, authelia need https to work.
|
||||||
|
|
||||||
|
#### Wordpress
|
||||||
|
|
||||||
|
For the [wordpress.env](infrastructure/services/wordpress/env/wordpress.env) file, you need to change the password and user for the database.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
WORDPRESS_DB_USER=bensuperpc
|
||||||
|
WORDPRESS_DB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
|
||||||
|
```
|
||||||
|
|
||||||
|
For [wordpress_db.env](infrastructure/services/wordpress/env/wordpress_db.env) file, you need to change the password(s) and user for the database.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
MARIADB_ROOT_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
||||||
|
MARIADB_USER=bensuperpc
|
||||||
|
MARIADB_PASSWORD=lEOEf8cndnDjp84O4Uv5D9zJLJDFatLw
|
||||||
|
```
|
||||||
|
|
||||||
|
For [wordpress_backup.env](infrastructure/services/wordpress/env/wordpress_backup.env) file, you need to change the password(s) for the restic backup.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
||||||
|
```
|
||||||
|
|
||||||
## Sources
|
## Sources
|
||||||
|
|
||||||
- [Wordpress](https://wordpress.org/)
|
- [Wordpress](https://wordpress.org/)
|
||||||
@@ -362,6 +467,7 @@ To activate the alternative webui theme (VueTorrent), you need to go in the qbit
|
|||||||
- [Letsencrypt](https://letsencrypt.org/)
|
- [Letsencrypt](https://letsencrypt.org/)
|
||||||
- [Caddy](https://caddyserver.com/)
|
- [Caddy](https://caddyserver.com/)
|
||||||
- [Adminer](https://www.adminer.org/)
|
- [Adminer](https://www.adminer.org/)
|
||||||
|
- [self-hosted-ai-stack](https://triedandtestedbuilds.com/self-hosted-ai-stack-part-1)
|
||||||
- [Uptime Kuma](https://uptime-kuma.com/)
|
- [Uptime Kuma](https://uptime-kuma.com/)
|
||||||
- [qbittorrent](https://www.qbittorrent.org/)
|
- [qbittorrent](https://www.qbittorrent.org/)
|
||||||
- [Transmission](https://transmissionbt.com/)
|
- [Transmission](https://transmissionbt.com/)
|
||||||
@@ -385,7 +491,9 @@ To activate the alternative webui theme (VueTorrent), you need to go in the qbit
|
|||||||
- [Forgejo-runner](https://huijzer.xyz/posts/55)
|
- [Forgejo-runner](https://huijzer.xyz/posts/55)
|
||||||
- [Forgejo](https://nickcunningh.am/blog/how-to-setup-and-configure-forgejo-with-support-for-forgejo-actions-and-more)
|
- [Forgejo](https://nickcunningh.am/blog/how-to-setup-and-configure-forgejo-with-support-for-forgejo-actions-and-more)
|
||||||
- [Argus](https://github.com/release-argus/Argus)
|
- [Argus](https://github.com/release-argus/Argus)
|
||||||
- [Forgejo-runner](https://huijzer.xyz/posts/55)
|
- [SearXNG](https://github.com/searxng/searxng)
|
||||||
|
- [Dependency-Track](https://dependencytrack.org/)
|
||||||
|
- [Authelia](https://www.authelia.com/)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|||||||
@@ -49,6 +49,10 @@ include:
|
|||||||
- services/dependency-track/docker-compose.dependency-track.yml
|
- services/dependency-track/docker-compose.dependency-track.yml
|
||||||
# Searxng
|
# Searxng
|
||||||
- services/searxng/docker-compose.searxng.yml
|
- services/searxng/docker-compose.searxng.yml
|
||||||
|
# Authelia
|
||||||
|
- services/authelia/docker-compose.authelia.yml
|
||||||
|
# Dozzle
|
||||||
|
- services/dozzle/docker-compose.dozzle.yml
|
||||||
# Minecraft
|
# Minecraft
|
||||||
- services/minecraft-server/docker-compose.yml
|
- services/minecraft-server/docker-compose.yml
|
||||||
# 7daystodie
|
# 7daystodie
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: 7daystodie_server
|
container_name: 7daystodie_server
|
||||||
profiles:
|
profiles:
|
||||||
- 7daystodie_server
|
- 7daystodie_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
ports:
|
ports:
|
||||||
- "26900:26900"
|
- "26900:26900"
|
||||||
- "26901:26901"
|
- "26901:26901"
|
||||||
@@ -25,6 +25,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
# security_opt:
|
# security_opt:
|
||||||
# - no-new-privileges:true
|
# - no-new-privileges:true
|
||||||
# cap_drop:
|
# cap_drop:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
- 7daystodie_backup
|
- 7daystodie_backup
|
||||||
depends_on:
|
depends_on:
|
||||||
- 7daystodie_server
|
- 7daystodie_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/7daystodie_backup.env
|
- ./env/7daystodie_backup.env
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -6,13 +6,14 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- argus
|
- argus
|
||||||
environment:
|
environment:
|
||||||
ARGUS_UID: ${PUID:-1000}
|
- ARGUS_UID=${PUID:-1000}
|
||||||
ARGUS_GID: ${PGID:-1000}
|
- ARGUS_GID=${PGID:-1000}
|
||||||
restart: on-failure:5
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- argus-network
|
- caddy-infra
|
||||||
volumes:
|
volumes:
|
||||||
- argus_data:/app/data/
|
- argus_data:/app/data/
|
||||||
- ./config/config.yml:/app/config.yml
|
- ./config/config.yml:/app/config.yml
|
||||||
@@ -28,6 +29,6 @@ volumes:
|
|||||||
name: argus_data
|
name: argus_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
argus-network:
|
caddy-infra:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: argus-network
|
name: caddy-infra
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
theme: auto
|
||||||
|
|
||||||
|
server:
|
||||||
|
address: "tcp://0.0.0.0:9091"
|
||||||
|
|
||||||
|
log:
|
||||||
|
level: info
|
||||||
|
|
||||||
|
authentication_backend:
|
||||||
|
file:
|
||||||
|
path: /config/users_database.yml
|
||||||
|
|
||||||
|
access_control:
|
||||||
|
default_policy: deny
|
||||||
|
rules:
|
||||||
|
- domain:
|
||||||
|
- "authelia.bensuperpc.org"
|
||||||
|
- "www.bensuperpc.org"
|
||||||
|
- "public.bensuperpc.org"
|
||||||
|
- "it-tools.bensuperpc.org"
|
||||||
|
- "omni-tools.bensuperpc.org"
|
||||||
|
- "cyberchef.bensuperpc.org"
|
||||||
|
- "wordpress.bensuperpc.org"
|
||||||
|
- "homepage.bensuperpc.org"
|
||||||
|
policy: bypass
|
||||||
|
- domain:
|
||||||
|
- "jellyfin.bensuperpc.org"
|
||||||
|
- "openwebui.bensuperpc.org"
|
||||||
|
- "searxng.bensuperpc.org"
|
||||||
|
subject:
|
||||||
|
- 'group:admins'
|
||||||
|
- 'group:users'
|
||||||
|
policy: one_factor
|
||||||
|
- domain:
|
||||||
|
- "*.bensuperpc.org"
|
||||||
|
subject:
|
||||||
|
- 'group:admins'
|
||||||
|
policy: one_factor
|
||||||
|
# - domain: "dependency-track.bensuperpc.org"
|
||||||
|
# resources:
|
||||||
|
# - "^/api/.*"
|
||||||
|
# policy: bypass
|
||||||
|
# - domain: "*.bensuperpc.org"
|
||||||
|
# policy: two_factor
|
||||||
|
|
||||||
|
session:
|
||||||
|
expiration: 72h
|
||||||
|
inactivity: 60m
|
||||||
|
remember_me: 1M
|
||||||
|
cookies:
|
||||||
|
- domain: "bensuperpc.org"
|
||||||
|
authelia_url: "https://authelia.bensuperpc.org"
|
||||||
|
|
||||||
|
regulation:
|
||||||
|
max_retries: 5
|
||||||
|
find_time: 3m
|
||||||
|
ban_time: 15m
|
||||||
|
|
||||||
|
storage:
|
||||||
|
postgres: {}
|
||||||
|
|
||||||
|
notifier:
|
||||||
|
filesystem:
|
||||||
|
filename: /config/notification.txt
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
users:
|
||||||
|
bensuperpc:
|
||||||
|
displayname: "Bensuperpc"
|
||||||
|
password: "$argon2id$v=19$m=65536,t=3,p=4$1T+CwoeP6hcoddG8l1iilg$omcB+SICmNQzmZIXhE54S5+J68AU32f60a5ctYoEObU"
|
||||||
|
email: "bensuperpc@gmail.com"
|
||||||
|
groups:
|
||||||
|
- admins
|
||||||
|
- users
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
services:
|
||||||
|
authelia:
|
||||||
|
container_name: authelia
|
||||||
|
image: authelia/authelia:latest
|
||||||
|
profiles:
|
||||||
|
- authelia
|
||||||
|
- caddy
|
||||||
|
depends_on:
|
||||||
|
authelia-postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
# environment:
|
||||||
|
# - TZ=America/New_York
|
||||||
|
# - PUID=${PUID:-1000}
|
||||||
|
# - PGID=${PGID:-1000}
|
||||||
|
env_file:
|
||||||
|
- ./env/authelia.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
volumes:
|
||||||
|
- ./config:/config
|
||||||
|
networks:
|
||||||
|
- caddy-infra
|
||||||
|
- authelia-internal
|
||||||
|
restart: on-failure:7
|
||||||
|
|
||||||
|
authelia-postgres:
|
||||||
|
image: postgres:17-alpine
|
||||||
|
container_name: authelia-postgres
|
||||||
|
restart: on-failure:7
|
||||||
|
volumes:
|
||||||
|
- authelia_db_data:/var/lib/postgresql/data
|
||||||
|
env_file:
|
||||||
|
- ./env/authelia_postgres.env
|
||||||
|
profiles:
|
||||||
|
- authelia
|
||||||
|
- caddy
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 3s
|
||||||
|
retries: 5
|
||||||
|
networks:
|
||||||
|
- authelia-internal
|
||||||
|
|
||||||
|
networks:
|
||||||
|
caddy-infra:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-infra
|
||||||
|
authelia-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: authelia-internal
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
authelia_db_data: {}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
AUTHELIA_IDENTITY_VALIDATION_RESET_PASSWORD_JWT_SECRET=ht87MVnXkXhBpDkMUHqKDqdg8UGBJt+Fx5jNIqXnN2k=
|
||||||
|
AUTHELIA_SESSION_SECRET=nsvbXKGRXVZUCUkOapntlq/Zh+d75WacTK5Jgyh8zYk=
|
||||||
|
AUTHELIA_STORAGE_ENCRYPTION_KEY=aWeIT74xIhGVd9nUOr4YTToTl5rpBEbzc/fv4jemuos=
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_HOST=authelia-postgres
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_PORT=5432
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_DATABASE=authelia_db
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_USERNAME=authelia
|
||||||
|
AUTHELIA_STORAGE_POSTGRES_PASSWORD=sAdkxFW6k3GiMOrlBpl6OV76eb9cQz/uk95jmA2UpI8=
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
POSTGRES_USER=authelia
|
||||||
|
POSTGRES_PASSWORD=sAdkxFW6k3GiMOrlBpl6OV76eb9cQz/uk95jmA2UpI8=
|
||||||
|
POSTGRES_DB=authelia_db
|
||||||
@@ -10,13 +10,13 @@
|
|||||||
}
|
}
|
||||||
format json
|
format json
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto_https {$AUTO_HTTPS_OPTIONS}
|
||||||
}
|
}
|
||||||
|
|
||||||
# import website/*
|
|
||||||
|
|
||||||
|
|
||||||
# Common settings
|
# Common settings
|
||||||
import website/header.caddy
|
import website/header.caddy
|
||||||
|
import website/authelia_middleware.caddy
|
||||||
|
|
||||||
# All website configurations
|
# All website configurations
|
||||||
import website/main.caddy
|
import website/main.caddy
|
||||||
@@ -25,7 +25,7 @@ import website/forgejo.caddy
|
|||||||
import website/homepage.caddy
|
import website/homepage.caddy
|
||||||
import website/jellyfin.caddy
|
import website/jellyfin.caddy
|
||||||
import website/memos.caddy
|
import website/memos.caddy
|
||||||
import website/open-webui.caddy
|
import website/openwebui.caddy
|
||||||
import website/privatebin.caddy
|
import website/privatebin.caddy
|
||||||
import website/psitransfer.caddy
|
import website/psitransfer.caddy
|
||||||
import website/stirlingpdf.caddy
|
import website/stirlingpdf.caddy
|
||||||
@@ -42,3 +42,5 @@ import website/uptimekuma.caddy
|
|||||||
import website/argus.caddy
|
import website/argus.caddy
|
||||||
import website/dependency-track.caddy
|
import website/dependency-track.caddy
|
||||||
import website/searxng.caddy
|
import website/searxng.caddy
|
||||||
|
import website/authelia.caddy
|
||||||
|
import website/dozzle.caddy
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
argus.{$MAIN_DOMAIN} {
|
{$SCHEME}://argus.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$ARGUS_ADDRESS}
|
reverse_proxy {$ARGUS_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{$SCHEME}://authelia.{$MAIN_DOMAIN} {
|
||||||
|
reverse_proxy {$AUTHELIA_ADDRESS}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
(authelia_middleware) {
|
||||||
|
forward_auth authelia:9091 {
|
||||||
|
uri /api/authz/forward-auth
|
||||||
|
copy_headers Remote-User Remote-Groups Remote-Name Remote-Email
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
cyberchef.{$MAIN_DOMAIN} {
|
{$SCHEME}://cyberchef.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
# Load balance between 2 instances
|
# Load balance between 2 instances
|
||||||
reverse_proxy {
|
reverse_proxy {
|
||||||
to cyberchef0:8000 cyberchef1:8000
|
to cyberchef0:8000 cyberchef1:8000
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
dependency-track.{$MAIN_DOMAIN} {
|
{$SCHEME}://dependency-track.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy /api/* {$DEPENDENCY_TRACK_APISERVER_ADDRESS}
|
reverse_proxy /api/* {$DEPENDENCY_TRACK_APISERVER_ADDRESS}
|
||||||
reverse_proxy {$DEPENDENCY_TRACK_FRONTEND_ADDRESS}
|
reverse_proxy {$DEPENDENCY_TRACK_FRONTEND_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{$SCHEME}://dozzle.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
|
reverse_proxy {$DOZZLE_ADDRESS}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
dufs.{$MAIN_DOMAIN} {
|
{$SCHEME}://dufs.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy dufs:5000
|
reverse_proxy dufs:5000
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
git.{$MAIN_DOMAIN} {
|
{$SCHEME}://git.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$FORGEJO_ADDRESS}
|
reverse_proxy {$FORGEJO_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|
||||||
forgejo.{$MAIN_DOMAIN} {
|
{$SCHEME}://forgejo.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
redir https://git.{$MAIN_DOMAIN}{uri} permanent
|
redir https://git.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
homepage.{$MAIN_DOMAIN} {
|
{$SCHEME}://homepage.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy {$HOMEPAGE_ADDRESS}
|
import authelia_middleware
|
||||||
|
redir https://www.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
it-tools.{$MAIN_DOMAIN} {
|
{$SCHEME}://it-tools.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
# Load balance between 2 instances
|
# Load balance between 2 instances
|
||||||
reverse_proxy {
|
reverse_proxy {
|
||||||
to it-tools0:8080 it-tools1:8080
|
to it-tools0:8080 it-tools1:8080
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
jellyfin.{$MAIN_DOMAIN} {
|
{$SCHEME}://jellyfin.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$JELLYFIN_ADDRESS}
|
reverse_proxy {$JELLYFIN_ADDRESS}
|
||||||
header {
|
header {
|
||||||
import header_common
|
import header_common
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
www.{$MAIN_DOMAIN} {
|
{$SCHEME}://www.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
header {
|
header {
|
||||||
Cache-Control "public, max-age=10"
|
Cache-Control "public, max-age=10"
|
||||||
import header_common
|
import header_common
|
||||||
@@ -12,11 +13,11 @@ www.{$MAIN_DOMAIN} {
|
|||||||
reverse_proxy homepage:3000
|
reverse_proxy homepage:3000
|
||||||
}
|
}
|
||||||
|
|
||||||
{$MAIN_DOMAIN} {
|
{$SCHEME}://{$MAIN_DOMAIN} {
|
||||||
redir https://www.{host}{uri} permanent
|
redir https://www.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
public.{$MAIN_DOMAIN} {
|
{$SCHEME}://public.{$MAIN_DOMAIN} {
|
||||||
root * /public_data
|
root * /public_data
|
||||||
file_server browse
|
file_server browse
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
memos.{$MAIN_DOMAIN} {
|
{$SCHEME}://memos.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$MEMOS_ADDRESS}
|
reverse_proxy {$MEMOS_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
omni-tools.{$MAIN_DOMAIN} {
|
{$SCHEME}://omni-tools.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
# Load balance between 2 instances
|
# Load balance between 2 instances
|
||||||
reverse_proxy {
|
reverse_proxy {
|
||||||
to omni-tools0:80 omni-tools1:80
|
to omni-tools0:80 omni-tools1:80
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
open-webui.{$MAIN_DOMAIN} {
|
|
||||||
reverse_proxy {$OPEN_WEBUI_ADDRESS}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{$SCHEME}://openwebui.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
|
reverse_proxy {$OPEN_WEBUI_ADDRESS}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
picoshare.{$MAIN_DOMAIN} {
|
{$SCHEME}://picoshare.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$PICOSHARE_ADDRESS}
|
reverse_proxy {$PICOSHARE_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
privatebin.{$MAIN_DOMAIN} {
|
{$SCHEME}://privatebin.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$PRIVATEBIN_ADDRESS}
|
reverse_proxy {$PRIVATEBIN_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|
||||||
pastebin.{$MAIN_DOMAIN} {
|
|
||||||
redir https://privatebin.{$MAIN_DOMAIN} permanent
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
projectsend.{$MAIN_DOMAIN} {
|
{$SCHEME}://projectsend.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$PROJECTSEND_ADDRESS}
|
reverse_proxy {$PROJECTSEND_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
transfer.{$MAIN_DOMAIN} {
|
{$SCHEME}://transfer.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$PSITRANSFER_ADDRESS}
|
reverse_proxy {$PSITRANSFER_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|
||||||
psitransfer.{$MAIN_DOMAIN} {
|
{$SCHEME}://psitransfer.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
redir https://transfer.{$MAIN_DOMAIN}{uri} permanent
|
redir https://transfer.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,15 @@
|
|||||||
torrent.{$MAIN_DOMAIN} {
|
{$SCHEME}://torrent.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy {$QBITTORRENT_ADDRESS}
|
import authelia_middleware
|
||||||
|
reverse_proxy {$QBITTORRENT_ADDRESS} {
|
||||||
|
header_up Referer "{$SCHEME}://torrent.{$MAIN_DOMAIN}"
|
||||||
|
}
|
||||||
header {
|
header {
|
||||||
Cache-Control "no-store"
|
Cache-Control "no-store"
|
||||||
import header_common
|
import header_common
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
qbittorrent.{$MAIN_DOMAIN} {
|
{$SCHEME}://qbittorrent.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
redir https://torrent.{$MAIN_DOMAIN} permanent
|
redir https://torrent.{$MAIN_DOMAIN} permanent
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
searxng.{$MAIN_DOMAIN} {
|
{$SCHEME}://searxng.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$SEARXNG_ADDRESS}
|
reverse_proxy {$SEARXNG_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
stirlingpdf.{$MAIN_DOMAIN} {
|
{$SCHEME}://stirlingpdf.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$STIRLINGPDF_ADDRESS}
|
reverse_proxy {$STIRLINGPDF_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
syncthing.{$MAIN_DOMAIN} {
|
{$SCHEME}://syncthing.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$SYNCTHING_ADDRESS} {
|
reverse_proxy {$SYNCTHING_ADDRESS} {
|
||||||
header_up Host {upstream_hostport}
|
header_up Host {upstream_hostport}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
transmission.{$MAIN_DOMAIN} {
|
{$SCHEME}://transmission.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$TRANSMISSION_ADDRESS}
|
reverse_proxy {$TRANSMISSION_ADDRESS}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
uptimekuma.{$MAIN_DOMAIN} {
|
{$SCHEME}://uptimekuma.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
reverse_proxy {$UPTIMEKUMA_ADDRESS}
|
reverse_proxy {$UPTIMEKUMA_ADDRESS}
|
||||||
header {
|
header {
|
||||||
Cache-Control "no-store"
|
Cache-Control "no-store"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
wordpress.{$MAIN_DOMAIN} {
|
{$SCHEME}://wordpress.{$MAIN_DOMAIN} {
|
||||||
|
import authelia_middleware
|
||||||
root * /var/www/html
|
root * /var/www/html
|
||||||
php_fastcgi {$WORDPRESS_ADDRESS}
|
php_fastcgi {$WORDPRESS_ADDRESS}
|
||||||
|
|
||||||
@@ -16,9 +17,6 @@ wordpress.{$MAIN_DOMAIN} {
|
|||||||
respond /uploads/*.php 404
|
respond /uploads/*.php 404
|
||||||
|
|
||||||
header {
|
header {
|
||||||
# disable FLoC tracking
|
|
||||||
Permissions-Policy interest-cohort=()
|
|
||||||
|
|
||||||
# enable HSTS
|
# enable HSTS
|
||||||
Strict-Transport-Security max-age=31536000;
|
Strict-Transport-Security max-age=31536000;
|
||||||
|
|
||||||
@@ -29,6 +27,6 @@ wordpress.{$MAIN_DOMAIN} {
|
|||||||
# X-Frame-Options DENY
|
# X-Frame-Options DENY
|
||||||
|
|
||||||
# Disable powerful features we don't need
|
# Disable powerful features we don't need
|
||||||
Permissions-Policy "geolocation=(), camera=(), microphone=() interest-cohort=()"
|
Permissions-Policy "geolocation=(), camera=(), microphone=()"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
main_infrastructure:
|
main_infrastructure:
|
||||||
condition: service_completed_successfully
|
condition: service_completed_successfully
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
ports:
|
ports:
|
||||||
- 80:80/tcp
|
- 80:80/tcp
|
||||||
- 80:80/udp
|
- 80:80/udp
|
||||||
@@ -23,35 +23,17 @@ services:
|
|||||||
- public_data:/public_data:ro
|
- public_data:/public_data:ro
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
- qbittorrent-network
|
- caddy-infra
|
||||||
- syncthing-network
|
- caddy-media
|
||||||
- jellyfin-network
|
- caddy-tools
|
||||||
- forgejo-network
|
- caddy-files
|
||||||
- argus-network
|
- caddy-dev
|
||||||
- it-tools-network
|
- caddy-ai
|
||||||
- homepage-network
|
- caddy-web
|
||||||
- dufs-network
|
|
||||||
- cyberchef-network
|
|
||||||
- open-webui-network
|
|
||||||
- uptimekuma-network
|
|
||||||
- stirlingpdf-network
|
|
||||||
- psitransfer-network
|
|
||||||
- transmission-network
|
|
||||||
- projectsend-network
|
|
||||||
- omni-tools-network
|
|
||||||
- privatebin-network
|
|
||||||
- picoshare-network
|
|
||||||
- memos-network
|
|
||||||
- dependency-track-network
|
|
||||||
- searxng-network
|
|
||||||
- wordpress-network
|
|
||||||
# - satisfactory-network
|
|
||||||
# - teamfortress2-network
|
|
||||||
# - minecraft-network
|
|
||||||
# - 7daystodie-network
|
|
||||||
# - openssh-network
|
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/caddy.env
|
- ./env/caddy.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@@ -67,9 +49,11 @@ services:
|
|||||||
- caddy
|
- caddy
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/caddy_backup.env
|
- ./env/caddy_backup.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- caddy_backup:/mnt/restic
|
- caddy_backup:/mnt/restic
|
||||||
- caddy_data:/data:ro
|
- caddy_data:/data:ro
|
||||||
@@ -90,3 +74,26 @@ volumes:
|
|||||||
name: wordpress
|
name: wordpress
|
||||||
public_data:
|
public_data:
|
||||||
name: public_data
|
name: public_data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
caddy-infra:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-infra
|
||||||
|
caddy-media:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-media
|
||||||
|
caddy-tools:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-tools
|
||||||
|
caddy-files:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-files
|
||||||
|
caddy-dev:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-dev
|
||||||
|
caddy-ai:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-ai
|
||||||
|
caddy-web:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-web
|
||||||
|
|||||||
+7
-1
@@ -8,7 +8,7 @@ FORGEJO_ADDRESS=forgejo:3000
|
|||||||
UPTIMEKUMA_ADDRESS=uptime-kuma:3001
|
UPTIMEKUMA_ADDRESS=uptime-kuma:3001
|
||||||
MEMOS_ADDRESS=memos:5230
|
MEMOS_ADDRESS=memos:5230
|
||||||
HOMEPAGE_ADDRESS=homepage:3000
|
HOMEPAGE_ADDRESS=homepage:3000
|
||||||
OPEN_WEBUI_ADDRESS=open-webui:8080
|
OPEN_WEBUI_ADDRESS=openwebui:8080
|
||||||
PICOSHARE_ADDRESS=picoshare:4001
|
PICOSHARE_ADDRESS=picoshare:4001
|
||||||
PRIVATEBIN_ADDRESS=privatebin:8080
|
PRIVATEBIN_ADDRESS=privatebin:8080
|
||||||
PROJECTSEND_ADDRESS=projectsend:80
|
PROJECTSEND_ADDRESS=projectsend:80
|
||||||
@@ -20,3 +20,9 @@ WORDPRESS_ADDRESS=wordpress:9000
|
|||||||
DEPENDENCY_TRACK_FRONTEND_ADDRESS=dependency-track-frontend:8080
|
DEPENDENCY_TRACK_FRONTEND_ADDRESS=dependency-track-frontend:8080
|
||||||
DEPENDENCY_TRACK_APISERVER_ADDRESS=dependency-track-apiserver:8080
|
DEPENDENCY_TRACK_APISERVER_ADDRESS=dependency-track-apiserver:8080
|
||||||
SEARXNG_ADDRESS=searxng:8080
|
SEARXNG_ADDRESS=searxng:8080
|
||||||
|
AUTHELIA_ADDRESS=authelia:9091
|
||||||
|
DOZZLE_ADDRESS=dozzle:8080
|
||||||
|
# Scheme
|
||||||
|
SCHEME=https
|
||||||
|
# ignore_loaded_certs off
|
||||||
|
AUTO_HTTPS_OPTIONS=ignore_loaded_certs
|
||||||
|
|||||||
@@ -5,11 +5,11 @@ services:
|
|||||||
container_name: cyberchef0
|
container_name: cyberchef0
|
||||||
profiles:
|
profiles:
|
||||||
- cyberchef
|
- cyberchef
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- cyberchef-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
@@ -30,11 +30,11 @@ services:
|
|||||||
container_name: cyberchef1
|
container_name: cyberchef1
|
||||||
profiles:
|
profiles:
|
||||||
- cyberchef
|
- cyberchef
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- cyberchef-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
@@ -51,6 +51,6 @@ services:
|
|||||||
memory: 20M
|
memory: 20M
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
cyberchef-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: cyberchef-network
|
name: caddy-tools
|
||||||
|
|||||||
@@ -9,9 +9,10 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/dependency-track.env
|
- ./env/dependency-track.env
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
networks:
|
networks:
|
||||||
- dependency-track-network
|
- caddy-web
|
||||||
|
- dependency-track-internal
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
@@ -26,9 +27,10 @@ services:
|
|||||||
container_name: dependency-track-frontend
|
container_name: dependency-track-frontend
|
||||||
profiles:
|
profiles:
|
||||||
- dependency-track
|
- dependency-track
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
networks:
|
networks:
|
||||||
- dependency-track-network
|
- caddy-web
|
||||||
|
- dependency-track-internal
|
||||||
depends_on:
|
depends_on:
|
||||||
dependency-track-apiserver:
|
dependency-track-apiserver:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
@@ -45,15 +47,15 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- dependency-track
|
- dependency-track
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/dependency-track.env
|
- ./env/postgres.env
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
networks:
|
networks:
|
||||||
- dependency-track-network
|
- dependency-track-internal
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
|
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 3s
|
timeout: 3s
|
||||||
retries: 3
|
retries: 5
|
||||||
volumes:
|
volumes:
|
||||||
- "dtrack-postgres-data:/var/lib/postgresql/data"
|
- "dtrack-postgres-data:/var/lib/postgresql/data"
|
||||||
|
|
||||||
@@ -64,6 +66,9 @@ volumes:
|
|||||||
name: dtrack-postgres-data
|
name: dtrack-postgres-data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
dependency-track-network:
|
caddy-web:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: dependency-track-network
|
name: caddy-web
|
||||||
|
dependency-track-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: dependency-track-internal
|
||||||
|
|||||||
@@ -1,114 +1,7 @@
|
|||||||
# apiserver
|
|
||||||
|
|
||||||
# The Dependency-Track container can be configured using any of the
|
|
||||||
# available configuration properties defined in:
|
|
||||||
# https://docs.dependencytrack.org/getting-started/configuration/
|
|
||||||
# All properties are upper case with periods replaced by underscores.
|
|
||||||
#
|
|
||||||
# Database Properties
|
|
||||||
# ALPINE_DATABASE_MODE: "external"
|
|
||||||
# ALPINE_DATABASE_URL: "jdbc:postgresql://postgres10:5432/dtrack"
|
|
||||||
# ALPINE_DATABASE_DRIVER: "org.postgresql.Driver"
|
|
||||||
# ALPINE_DATABASE_USERNAME: "dtrack"
|
|
||||||
# ALPINE_DATABASE_PASSWORD: "changeme"
|
|
||||||
# ALPINE_DATABASE_POOL_ENABLED: "true"
|
|
||||||
# ALPINE_DATABASE_POOL_MAX_SIZE: "20"
|
|
||||||
# ALPINE_DATABASE_POOL_MIN_IDLE: "10"
|
|
||||||
# ALPINE_DATABASE_POOL_IDLE_TIMEOUT: "300000"
|
|
||||||
# ALPINE_DATABASE_POOL_MAX_LIFETIME: "600000"
|
|
||||||
#
|
|
||||||
# Optional LDAP Properties
|
|
||||||
# ALPINE_LDAP_ENABLED: "true"
|
|
||||||
# ALPINE_LDAP_SERVER_URL: "ldap://ldap.example.com:389"
|
|
||||||
# ALPINE_LDAP_BASEDN: "dc=example,dc=com"
|
|
||||||
# ALPINE_LDAP_SECURITY_AUTH: "simple"
|
|
||||||
# ALPINE_LDAP_BIND_USERNAME: ""
|
|
||||||
# ALPINE_LDAP_BIND_PASSWORD: ""
|
|
||||||
# ALPINE_LDAP_AUTH_USERNAME_FORMAT: "%s@example.com"
|
|
||||||
# ALPINE_LDAP_ATTRIBUTE_NAME: "userPrincipalName"
|
|
||||||
# ALPINE_LDAP_ATTRIBUTE_MAIL: "mail"
|
|
||||||
# ALPINE_LDAP_GROUPS_FILTER: "(&(objectClass=group)(objectCategory=Group))"
|
|
||||||
# ALPINE_LDAP_USER_GROUPS_FILTER: "(member:1.2.840.113556.1.4.1941:={USER_DN})"
|
|
||||||
# ALPINE_LDAP_GROUPS_SEARCH_FILTER: "(&(objectClass=group)(objectCategory=Group)(cn=*{SEARCH_TERM}*))"
|
|
||||||
# ALPINE_LDAP_USERS_SEARCH_FILTER: "(&(objectClass=user)(objectCategory=Person)(cn=*{SEARCH_TERM}*))"
|
|
||||||
# ALPINE_LDAP_USER_PROVISIONING: "false"
|
|
||||||
# ALPINE_LDAP_TEAM_SYNCHRONIZATION: "false"
|
|
||||||
#
|
|
||||||
# Optional OpenID Connect (OIDC) Properties
|
|
||||||
# ALPINE_OIDC_ENABLED: "true"
|
|
||||||
# ALPINE_OIDC_ISSUER: "https://auth.example.com/auth/realms/example"
|
|
||||||
# ALPINE_OIDC_CLIENT_ID: ""
|
|
||||||
# ALPINE_OIDC_USERNAME_CLAIM: "preferred_username"
|
|
||||||
# ALPINE_OIDC_TEAMS_CLAIM: "groups"
|
|
||||||
# ALPINE_OIDC_USER_PROVISIONING: "true"
|
|
||||||
# ALPINE_OIDC_TEAM_SYNCHRONIZATION: "true"
|
|
||||||
#
|
|
||||||
# Optional HTTP Proxy Settings
|
|
||||||
# ALPINE_HTTP_PROXY_ADDRESS: "proxy.example.com"
|
|
||||||
# ALPINE_HTTP_PROXY_PORT: "8888"
|
|
||||||
# ALPINE_HTTP_PROXY_USERNAME: ""
|
|
||||||
# ALPINE_HTTP_PROXY_PASSWORD: ""
|
|
||||||
# ALPINE_NO_PROXY: ""
|
|
||||||
#
|
|
||||||
# Optional HTTP Outbound Connection Timeout Settings. All values are in seconds.
|
|
||||||
# ALPINE_HTTP_TIMEOUT_CONNECTION: "30"
|
|
||||||
# ALPINE_HTTP_TIMEOUT_SOCKET: "30"
|
|
||||||
# ALPINE_HTTP_TIMEOUT_POOL: "60"
|
|
||||||
#
|
|
||||||
# Optional Cross-Origin Resource Sharing (CORS) Headers
|
|
||||||
# ALPINE_CORS_ENABLED: "true"
|
|
||||||
# ALPINE_CORS_ALLOW_ORIGIN: "*"
|
|
||||||
# ALPINE_CORS_ALLOW_METHODS: "GET, POST, PUT, DELETE, OPTIONS"
|
|
||||||
# ALPINE_CORS_ALLOW_HEADERS: "Origin, Content-Type, Authorization, X-Requested-With, Content-Length, Accept, Origin, X-Api-Key, X-Total-Count, *"
|
|
||||||
# ALPINE_CORS_EXPOSE_HEADERS: "Origin, Content-Type, Authorization, X-Requested-With, Content-Length, Accept, Origin, X-Api-Key, X-Total-Count"
|
|
||||||
# ALPINE_CORS_ALLOW_CREDENTIALS: "true"
|
|
||||||
# ALPINE_CORS_MAX_AGE: "3600"
|
|
||||||
#
|
|
||||||
# Optional logging configuration
|
|
||||||
# LOGGING_LEVEL: "INFO"
|
|
||||||
# LOGGING_CONFIG_PATH: "logback.xml"
|
|
||||||
#
|
|
||||||
# Optional metrics properties
|
|
||||||
# ALPINE_METRICS_ENABLED: "true"
|
|
||||||
# ALPINE_METRICS_AUTH_USERNAME: ""
|
|
||||||
# ALPINE_METRICS_AUTH_PASSWORD: ""
|
|
||||||
#
|
|
||||||
# Optional environmental variables to enable default notification publisher templates override and set the base directory to search for templates
|
|
||||||
# DEFAULT_TEMPLATES_OVERRIDE_ENABLED: "false"
|
|
||||||
# DEFAULT_TEMPLATES_OVERRIDE_BASE_DIRECTORY: "/data"
|
|
||||||
#
|
|
||||||
# Optional configuration for the Snyk analyzer
|
|
||||||
# SNYK_THREAD_BATCH_SIZE: "10"
|
|
||||||
#
|
|
||||||
# Optional environmental variables to provide more JVM arguments to the API Server JVM, i.e. "-XX:ActiveProcessorCount=8"
|
|
||||||
# EXTRA_JAVA_OPTIONS: ""
|
|
||||||
ALPINE_DATABASE_MODE="external"
|
ALPINE_DATABASE_MODE="external"
|
||||||
ALPINE_DATABASE_URL="jdbc:postgresql://dependency-track-postgres:5432/dtrack"
|
ALPINE_DATABASE_URL="jdbc:postgresql://dependency-track-postgres:5432/dtrack"
|
||||||
ALPINE_DATABASE_DRIVER="org.postgresql.Driver"
|
ALPINE_DATABASE_DRIVER="org.postgresql.Driver"
|
||||||
ALPINE_DATABASE_USERNAME="dtrack"
|
ALPINE_DATABASE_USERNAME="dtrack"
|
||||||
ALPINE_DATABASE_PASSWORD="dtrack"
|
ALPINE_DATABASE_PASSWORD="dtrack"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# frontend
|
|
||||||
|
|
||||||
|
|
||||||
# The base URL of the API server.
|
|
||||||
# NOTE:
|
|
||||||
# * This URL must be reachable by the browsers of your users.
|
|
||||||
# * The frontend container itself does NOT communicate with the API server directly, it just serves static files.
|
|
||||||
# * When deploying to dedicated servers, please use the external IP or domain of the API server.
|
|
||||||
# OIDC_ISSUER: ""
|
|
||||||
# OIDC_CLIENT_ID: ""
|
|
||||||
# OIDC_SCOPE: ""
|
|
||||||
# OIDC_FLOW: ""
|
|
||||||
# OIDC_LOGIN_BUTTON_TEXT: ""
|
|
||||||
# volumes:
|
|
||||||
# - "/host/path/to/config.json:/app/static/config.json"
|
|
||||||
|
|
||||||
API_BASE_URL="https://dependency-track.bensuperpc.org"
|
API_BASE_URL="https://dependency-track.bensuperpc.org"
|
||||||
|
|
||||||
# postgres
|
|
||||||
POSTGRES_DB="dtrack"
|
|
||||||
POSTGRES_USER="dtrack"
|
|
||||||
POSTGRES_PASSWORD="dtrack"
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
POSTGRES_DB="dtrack"
|
||||||
|
POSTGRES_USER="dtrack"
|
||||||
|
POSTGRES_PASSWORD="dtrack"
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
users:
|
||||||
|
bensuperpc:
|
||||||
|
email: bensuperpc@gmail.com
|
||||||
|
name: bensuperpc
|
||||||
|
password: $2a$11$w56N4NICh5xD5Bbq6Z2Z2ef9/QUaa/YKleMiawn/Bru9hYsQOJyrm
|
||||||
|
filter: ""
|
||||||
|
roles: ""
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
services:
|
||||||
|
dozzle:
|
||||||
|
image: amir20/dozzle:latest
|
||||||
|
container_name: dozzle
|
||||||
|
profiles:
|
||||||
|
- dozzle
|
||||||
|
restart: on-failure:7
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
- dozzle-dockerproxy
|
||||||
|
env_file:
|
||||||
|
- ./env/dozzle.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
volumes:
|
||||||
|
- dozzle_data:/data
|
||||||
|
secrets:
|
||||||
|
- source: dozzle_users
|
||||||
|
target: /data/users.yml
|
||||||
|
networks:
|
||||||
|
- caddy-infra
|
||||||
|
- dozzle-internal
|
||||||
|
|
||||||
|
dozzle-dockerproxy:
|
||||||
|
image: tecnativa/docker-socket-proxy:latest
|
||||||
|
container_name: dozzle-dockerproxy
|
||||||
|
profiles:
|
||||||
|
- dozzle
|
||||||
|
restart: on-failure:7
|
||||||
|
environment:
|
||||||
|
- CONTAINERS=1
|
||||||
|
- POST=0
|
||||||
|
- PING=1
|
||||||
|
- VERSION=1
|
||||||
|
- EVENTS=1
|
||||||
|
- INFO=1
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
networks:
|
||||||
|
- dozzle-internal
|
||||||
|
|
||||||
|
networks:
|
||||||
|
caddy-infra:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-infra
|
||||||
|
dozzle-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: dozzle-internal
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
dozzle_data:
|
||||||
|
name: dozzle_data
|
||||||
|
|
||||||
|
secrets:
|
||||||
|
dozzle_users:
|
||||||
|
file: ./config/users.yml
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
DOZZLE_AUTH_PROVIDER=simple
|
||||||
|
DOZZLE_REMOTE_HOST=tcp://dozzle-dockerproxy:2375
|
||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- dufs
|
- dufs
|
||||||
# user: ${PUID:-1000}:${PGID:-1000}
|
# user: ${PUID:-1000}:${PGID:-1000}
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -14,7 +14,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- public_data:/data
|
- public_data:/data
|
||||||
networks:
|
networks:
|
||||||
- dufs-network
|
- caddy-files
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -25,6 +25,6 @@ volumes:
|
|||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
dufs-network:
|
caddy-files:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: dufs-network
|
name: caddy-files
|
||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: forgejo
|
container_name: forgejo
|
||||||
profiles:
|
profiles:
|
||||||
- forgejo
|
- forgejo
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- database_forgejo
|
- database_forgejo
|
||||||
- caddy
|
- caddy
|
||||||
@@ -18,7 +18,8 @@ services:
|
|||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
networks:
|
networks:
|
||||||
- forgejo-network
|
- caddy-dev
|
||||||
|
- forgejo-internal
|
||||||
# user: ${PUID:-1000}:${PGID:-1000}
|
# user: ${PUID:-1000}:${PGID:-1000}
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
@@ -31,14 +32,14 @@ services:
|
|||||||
- forgejo
|
- forgejo
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
volumes:
|
volumes:
|
||||||
- forgejo_db:/var/lib/mysql:rw
|
- forgejo_db:/var/lib/mysql:rw
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/forgejo_db.env
|
- ./env/forgejo_db.env
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
networks:
|
networks:
|
||||||
- forgejo-network
|
- forgejo-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -48,7 +49,7 @@ services:
|
|||||||
container_name: 'docker_dind'
|
container_name: 'docker_dind'
|
||||||
hostname: docker
|
hostname: docker
|
||||||
networks:
|
networks:
|
||||||
- forgejo-network
|
- forgejo-internal
|
||||||
profiles:
|
profiles:
|
||||||
- forgejo-runner
|
- forgejo-runner
|
||||||
privileged: true
|
privileged: true
|
||||||
@@ -61,7 +62,7 @@ services:
|
|||||||
forgejo_runner:
|
forgejo_runner:
|
||||||
image: data.forgejo.org/forgejo/runner:12
|
image: data.forgejo.org/forgejo/runner:12
|
||||||
networks:
|
networks:
|
||||||
- forgejo-network
|
- forgejo-internal
|
||||||
profiles:
|
profiles:
|
||||||
- forgejo-runner
|
- forgejo-runner
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -91,6 +92,9 @@ volumes:
|
|||||||
name: forgejo_runner
|
name: forgejo_runner
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
forgejo-network:
|
caddy-dev:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: forgejo-network
|
name: caddy-dev
|
||||||
|
forgejo-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: forgejo-internal
|
||||||
|
|||||||
@@ -2,9 +2,6 @@
|
|||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/configs/docker
|
# https://gethomepage.dev/configs/docker
|
||||||
|
|
||||||
#jellyfin:
|
my-docker:
|
||||||
# host: jellyfin
|
host: homepage-dockerproxy
|
||||||
# port: 8096
|
port: 2375
|
||||||
|
|
||||||
#my-docker:
|
|
||||||
# socket: /var/run/docker.sock
|
|
||||||
|
|||||||
@@ -2,112 +2,135 @@
|
|||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/configs/services/
|
# https://gethomepage.dev/configs/services/
|
||||||
|
|
||||||
- Personal:
|
- Public:
|
||||||
- wordpress:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/wordpress.png
|
|
||||||
href: https://wordpress.bensuperpc.org/
|
|
||||||
description: Wordpress
|
|
||||||
ping: wordpress.bensuperpc.org
|
|
||||||
# container: wordpress
|
|
||||||
- jellyfin:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/jellyfin.png
|
|
||||||
href: https://jellyfin.bensuperpc.org/
|
|
||||||
description: Jellyfin
|
|
||||||
ping: jellyfin.bensuperpc.org
|
|
||||||
# container: jellyfin
|
|
||||||
- projectsend:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/projectsend.png
|
|
||||||
href: https://projectsend.bensuperpc.org/
|
|
||||||
description: ProjectSend
|
|
||||||
ping: projectsend.bensuperpc.org
|
|
||||||
# container: projectsend
|
|
||||||
- Sharing:
|
|
||||||
- psitransfer:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/psitransfer.png
|
|
||||||
href: https://psitransfer.bensuperpc.org/
|
|
||||||
description: PsiTransfer
|
|
||||||
ping: psitransfer.bensuperpc.org
|
|
||||||
# container: psitransfer
|
|
||||||
- picoshare:
|
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/picoshare.png
|
|
||||||
href: https://picoshare.bensuperpc.org/
|
|
||||||
description: PicoShare
|
|
||||||
ping: picoshare.bensuperpc.org
|
|
||||||
# container: picoshare
|
|
||||||
- privatebin:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/privatebin.png
|
|
||||||
href: https://privatebin.bensuperpc.org/
|
|
||||||
description: PrivateBin
|
|
||||||
ping: privatebin.bensuperpc.org
|
|
||||||
# container: privatebin
|
|
||||||
- qbittorrent:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/qbittorrent.png
|
|
||||||
href: https://qbittorrent.bensuperpc.org/
|
|
||||||
description: qBittorrent
|
|
||||||
ping: qbittorrent.bensuperpc.org
|
|
||||||
# container: qbittorrent
|
|
||||||
- syncthing:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/syncthing.png
|
|
||||||
href: https://syncthing.bensuperpc.org/
|
|
||||||
description: Syncthing
|
|
||||||
ping: syncthing.bensuperpc.org
|
|
||||||
# container: syncthing
|
|
||||||
- transmission:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/transmission.png
|
|
||||||
href: https://transmission.bensuperpc.org/
|
|
||||||
description: Transmission
|
|
||||||
ping: transmission.bensuperpc.org
|
|
||||||
# container: transmission
|
|
||||||
- dufs:
|
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/dufs.png
|
|
||||||
href: https://dufs.bensuperpc.org/
|
|
||||||
description: Dufs
|
|
||||||
ping: dufs.bensuperpc.org
|
|
||||||
# container: dufs
|
|
||||||
# - caddy:
|
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/caddy.png
|
|
||||||
# href: https://public.bensuperpc.org/
|
|
||||||
# description: File browser
|
|
||||||
# ping: public.bensuperpc.org
|
|
||||||
# # container: caddy
|
|
||||||
|
|
||||||
- Utils:
|
|
||||||
- it-tools:
|
- it-tools:
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/it-tools.png
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/it-tools.png
|
||||||
href: https://it-tools.bensuperpc.org/
|
href: https://it-tools.bensuperpc.org/
|
||||||
description: IT Tools
|
description: IT Tools
|
||||||
ping: it-tools.bensuperpc.org
|
# ping: it-tools.bensuperpc.org
|
||||||
# container: it-tools0
|
container: it-tools0
|
||||||
|
server: my-docker
|
||||||
- omni-tools:
|
- omni-tools:
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/it-tools.png
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/it-tools.png
|
||||||
href: https://omni-tools.bensuperpc.org/
|
href: https://omni-tools.bensuperpc.org/
|
||||||
description: Omni Tools
|
description: Omni Tools
|
||||||
ping: omni-tools.bensuperpc.org
|
# ping: omni-tools.bensuperpc.org
|
||||||
# container: omni-tools0
|
container: omni-tools0
|
||||||
|
server: my-docker
|
||||||
- cyberchef:
|
- cyberchef:
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/cyberchef.png
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/cyberchef.png
|
||||||
href: https://cyberchef.bensuperpc.org/
|
href: https://cyberchef.bensuperpc.org/
|
||||||
description: CyberChef
|
description: CyberChef
|
||||||
ping: cyberchef.bensuperpc.org
|
# ping: cyberchef.bensuperpc.org
|
||||||
# container: cyberchef0
|
container: cyberchef0
|
||||||
|
server: my-docker
|
||||||
|
- caddy:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/caddy.png
|
||||||
|
href: https://public.bensuperpc.org/
|
||||||
|
description: File browser
|
||||||
|
# ping: public.bensuperpc.org
|
||||||
|
container: caddy
|
||||||
|
server: my-docker
|
||||||
|
- psitransfer:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/psitransfer.png
|
||||||
|
href: https://psitransfer.bensuperpc.org/
|
||||||
|
description: PsiTransfer
|
||||||
|
# ping: psitransfer.bensuperpc.org
|
||||||
|
container: psitransfer
|
||||||
|
server: my-docker
|
||||||
- stirlingpdf:
|
- stirlingpdf:
|
||||||
#icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/stirlingpdf.png
|
#icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/stirlingpdf.png
|
||||||
href: https://stirlingpdf.bensuperpc.org/
|
href: https://stirlingpdf.bensuperpc.org/
|
||||||
description: StirlingPDF
|
description: StirlingPDF
|
||||||
ping: stirlingpdf.bensuperpc.org
|
# ping: stirlingpdf.bensuperpc.org
|
||||||
# container: stirlingpdf
|
container: stirlingpdf
|
||||||
|
server: my-docker
|
||||||
|
- privatebin:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/privatebin.png
|
||||||
|
href: https://privatebin.bensuperpc.org/
|
||||||
|
description: PrivateBin
|
||||||
|
# ping: privatebin.bensuperpc.org
|
||||||
|
container: privatebin
|
||||||
|
server: my-docker
|
||||||
- forgejo:
|
- forgejo:
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/forgejo.png
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/forgejo.png
|
||||||
href: https://forgejo.bensuperpc.org/
|
href: https://forgejo.bensuperpc.org/
|
||||||
description: Forgejo
|
description: Forgejo
|
||||||
ping: forgejo.bensuperpc.org
|
# ping: forgejo.bensuperpc.org
|
||||||
# container: forgejo
|
container: forgejo
|
||||||
|
server: my-docker
|
||||||
|
- wordpress:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/wordpress.png
|
||||||
|
href: https://wordpress.bensuperpc.org/
|
||||||
|
description: Wordpress
|
||||||
|
# ping: wordpress.bensuperpc.org
|
||||||
|
container: wordpress
|
||||||
|
server: my-docker
|
||||||
|
- dufs:
|
||||||
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/dufs.png
|
||||||
|
href: https://dufs.bensuperpc.org/
|
||||||
|
description: Dufs
|
||||||
|
# ping: dufs.bensuperpc.org
|
||||||
|
container: dufs
|
||||||
|
server: my-docker
|
||||||
|
|
||||||
|
- Personal:
|
||||||
|
- jellyfin:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/jellyfin.png
|
||||||
|
href: https://jellyfin.bensuperpc.org/
|
||||||
|
description: Jellyfin
|
||||||
|
# ping: jellyfin.bensuperpc.org
|
||||||
|
container: jellyfin
|
||||||
|
server: my-docker
|
||||||
|
- projectsend:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/projectsend.png
|
||||||
|
href: https://projectsend.bensuperpc.org/
|
||||||
|
description: ProjectSend
|
||||||
|
# ping: projectsend.bensuperpc.org
|
||||||
|
container: projectsend
|
||||||
|
server: my-docker
|
||||||
|
- searxng:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/searxng.png
|
||||||
|
href: https://searxng.bensuperpc.org/
|
||||||
|
description: SearXNG
|
||||||
|
# ping: searxng.bensuperpc.org
|
||||||
|
container: searxng
|
||||||
|
server: my-docker
|
||||||
- open-webui:
|
- open-webui:
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/open-webui.png
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/open-webui.png
|
||||||
href: https://open-webui.bensuperpc.org/
|
href: https://openwebui.bensuperpc.org/
|
||||||
description: ChatGPT local
|
description: ChatGPT local
|
||||||
ping: open-webui.bensuperpc.org
|
# ping: openwebui.bensuperpc.org
|
||||||
# container: open-webui
|
container: openwebui
|
||||||
|
server: my-docker
|
||||||
|
- picoshare:
|
||||||
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/picoshare.png
|
||||||
|
href: https://picoshare.bensuperpc.org/
|
||||||
|
description: PicoShare
|
||||||
|
# ping: picoshare.bensuperpc.org
|
||||||
|
container: picoshare
|
||||||
|
server: my-docker
|
||||||
|
- qbittorrent:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/qbittorrent.png
|
||||||
|
href: https://qbittorrent.bensuperpc.org/
|
||||||
|
description: qBittorrent
|
||||||
|
# ping: qbittorrent.bensuperpc.org
|
||||||
|
container: qbittorrent
|
||||||
|
server: my-docker
|
||||||
|
- syncthing:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/syncthing.png
|
||||||
|
href: https://syncthing.bensuperpc.org/
|
||||||
|
description: Syncthing
|
||||||
|
# ping: syncthing.bensuperpc.org
|
||||||
|
container: syncthing
|
||||||
|
server: my-docker
|
||||||
|
- transmission:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/transmission.png
|
||||||
|
href: https://transmission.bensuperpc.org/
|
||||||
|
description: Transmission
|
||||||
|
# ping: transmission.bensuperpc.org
|
||||||
|
container: transmission
|
||||||
|
server: my-docker
|
||||||
|
|
||||||
- Games:
|
- Games:
|
||||||
- minecraft:
|
- minecraft:
|
||||||
@@ -116,18 +139,21 @@
|
|||||||
description: Minecraft server
|
description: Minecraft server
|
||||||
# ping: minecraft.bensuperpc.org
|
# ping: minecraft.bensuperpc.org
|
||||||
# container: minecraft-server
|
# container: minecraft-server
|
||||||
|
#server: my-docker
|
||||||
- 7dtd:
|
- 7dtd:
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
||||||
# href: https://7dtd.bensuperpc.org/
|
# href: https://7dtd.bensuperpc.org/
|
||||||
description: 7 Days to Die server
|
description: 7 Days to Die server
|
||||||
# ping: 7dtd.bensuperpc.org
|
# ping: 7dtd.bensuperpc.org
|
||||||
# container: 7daystodie_server
|
# container: 7daystodie_server
|
||||||
|
#server: my-docker
|
||||||
- satisfactory:
|
- satisfactory:
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
||||||
# href: https://7dtd.bensuperpc.org/
|
# href: https://7dtd.bensuperpc.org/
|
||||||
description: Satisfactory server
|
description: Satisfactory server
|
||||||
# ping: 7dtd.bensuperpc.org
|
# ping: 7dtd.bensuperpc.org
|
||||||
# container: satisfactory_server
|
# container: satisfactory_server
|
||||||
|
#server: my-docker
|
||||||
|
|
||||||
- Admin:
|
- Admin:
|
||||||
- uptime-kuma:
|
- uptime-kuma:
|
||||||
@@ -135,5 +161,19 @@
|
|||||||
href: https://uptimekuma.bensuperpc.org/
|
href: https://uptimekuma.bensuperpc.org/
|
||||||
description: Uptime Kuma
|
description: Uptime Kuma
|
||||||
ping: uptimekuma.bensuperpc.org
|
ping: uptimekuma.bensuperpc.org
|
||||||
# container: uptime-kuma
|
container: uptime-kuma
|
||||||
|
server: my-docker
|
||||||
|
- authelia:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/authelia.png
|
||||||
|
href: https://authelia.bensuperpc.org/
|
||||||
|
description: Authelia
|
||||||
|
# ping: authelia.bensuperpc.org
|
||||||
|
container: authelia
|
||||||
|
server: my-docker
|
||||||
|
- dozzle:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/dozzle.png
|
||||||
|
href: https://dozzle.bensuperpc.org/
|
||||||
|
description: Dozzle
|
||||||
|
# ping: dozzle.bensuperpc.org
|
||||||
|
container: dozzle
|
||||||
|
server: my-docker
|
||||||
@@ -24,19 +24,15 @@ color: slate
|
|||||||
language: en
|
language: en
|
||||||
|
|
||||||
layout:
|
layout:
|
||||||
Personal:
|
Public:
|
||||||
style: row
|
style: row
|
||||||
columns: 6
|
columns: 6
|
||||||
Sharing:
|
Personal:
|
||||||
style: row
|
style: row
|
||||||
columns: 6
|
columns: 6
|
||||||
Admin:
|
Admin:
|
||||||
style: row
|
style: row
|
||||||
columns: 6
|
columns: 6
|
||||||
Utils:
|
|
||||||
style: row
|
|
||||||
columns: 6
|
|
||||||
initiallyCollapsed: false
|
|
||||||
Games:
|
Games:
|
||||||
style: row
|
style: row
|
||||||
columns: 6
|
columns: 6
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/widgets/services/
|
# https://gethomepage.dev/widgets/services/
|
||||||
# https://gethomepage.dev/widgets/services/qbittorrent/
|
|
||||||
|
|
||||||
#- logo:
|
#- logo:
|
||||||
# icon: /image/daisy.jpg
|
# icon: /image/daisy.jpg
|
||||||
|
|||||||
@@ -5,34 +5,49 @@ services:
|
|||||||
container_name: homepage
|
container_name: homepage
|
||||||
profiles:
|
profiles:
|
||||||
- homepage
|
- homepage
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
# environment:
|
# environment:
|
||||||
# - PUID=${PUID:-1000}
|
# - PUID=${PUID:-1000}
|
||||||
# - PGID=${PGID:-1000}
|
# - PGID=${PGID:-1000}
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
|
- homepage-dockerproxy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/homepage.env
|
- ./env/homepage.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- homepage_log:/app/logs
|
- homepage_log:/app/logs
|
||||||
- ./config:/app/config
|
- ./config:/app/config
|
||||||
- ./image:/app/public/image:ro
|
- ./image:/app/public/image:ro
|
||||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
|
||||||
# develop:
|
|
||||||
# watch:
|
|
||||||
# - action: sync+restart
|
|
||||||
# path: ./homepage/image
|
|
||||||
# target: /app/public/image
|
|
||||||
networks:
|
networks:
|
||||||
- homepage-network
|
- caddy-infra
|
||||||
|
- homepage-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
homepage-dockerproxy:
|
||||||
|
image: tecnativa/docker-socket-proxy:latest
|
||||||
|
container_name: homepage-dockerproxy
|
||||||
|
profiles:
|
||||||
|
- homepage
|
||||||
|
restart: on-failure:7
|
||||||
|
environment:
|
||||||
|
- CONTAINERS=1
|
||||||
|
- POST=0
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
networks:
|
||||||
|
- homepage-internal
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
homepage_log:
|
homepage_log:
|
||||||
name: homepage_log
|
name: homepage_log
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
homepage-network:
|
caddy-infra:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: homepage-network
|
name: caddy-infra
|
||||||
|
homepage-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: homepage-internal
|
||||||
|
|||||||
+1
-3
@@ -1,3 +1 @@
|
|||||||
PSITRANSFER_ADMIN_PASS=n9jLVNT9QUotTJTT91JqH4GyBTg9pvEn
|
HOMEPAGE_ALLOWED_HOSTS=www.bensuperpc.org,homepage.bensuperpc.org
|
||||||
#PSITRANSFER_PORT=3000
|
|
||||||
HOMEPAGE_ALLOWED_HOSTS=www.bensuperpc.org
|
|
||||||
|
|||||||
@@ -5,16 +5,18 @@ services:
|
|||||||
container_name: it-tools0
|
container_name: it-tools0
|
||||||
profiles:
|
profiles:
|
||||||
- it-tools
|
- it-tools
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- it-tools-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
- SYS_ADMIN
|
- SYS_ADMIN
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
@@ -30,16 +32,18 @@ services:
|
|||||||
container_name: it-tools1
|
container_name: it-tools1
|
||||||
profiles:
|
profiles:
|
||||||
- it-tools
|
- it-tools
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- it-tools-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
- SYS_ADMIN
|
- SYS_ADMIN
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
@@ -51,6 +55,6 @@ services:
|
|||||||
memory: 20M
|
memory: 20M
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
it-tools-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: it-tools-network
|
name: caddy-tools
|
||||||
|
|||||||
@@ -5,10 +5,11 @@ services:
|
|||||||
container_name: jellyfin
|
container_name: jellyfin
|
||||||
profiles:
|
profiles:
|
||||||
- jellyfin
|
- jellyfin
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -22,7 +23,7 @@ services:
|
|||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
networks:
|
networks:
|
||||||
- jellyfin-network
|
- caddy-media
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -37,6 +38,6 @@ volumes:
|
|||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
jellyfin-network:
|
caddy-media:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: jellyfin-network
|
name: caddy-media
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
TZ=Etc/UTC
|
|
||||||
DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
|
DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
|
||||||
@@ -23,12 +23,42 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- main_infrastructure
|
- main_infrastructure
|
||||||
image: nickfedor/watchtower:latest
|
image: nickfedor/watchtower:latest
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
restart: unless-stopped
|
restart: on-failure:7
|
||||||
|
networks:
|
||||||
|
- watchtower-network
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
public_data:
|
public_data:
|
||||||
name: public_data
|
name: public_data
|
||||||
private_data:
|
private_data:
|
||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
watchtower-network:
|
||||||
|
driver: bridge
|
||||||
|
name: watchtower-network
|
||||||
|
caddy-infra:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-infra
|
||||||
|
caddy-media:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-media
|
||||||
|
caddy-tools:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-tools
|
||||||
|
caddy-files:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-files
|
||||||
|
caddy-dev:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-dev
|
||||||
|
caddy-ai:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-ai
|
||||||
|
caddy-web:
|
||||||
|
driver: bridge
|
||||||
|
name: caddy-web
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: memos
|
container_name: memos
|
||||||
profiles:
|
profiles:
|
||||||
- memos
|
- memos
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -13,7 +13,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- memos_config:/var/opt/memos
|
- memos_config:/var/opt/memos
|
||||||
networks:
|
networks:
|
||||||
- memos-network
|
- caddy-tools
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -22,6 +22,6 @@ volumes:
|
|||||||
name: memos_config
|
name: memos_config
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
memos-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: memos-network
|
name: caddy-tools
|
||||||
|
|||||||
@@ -7,14 +7,13 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- mc-server
|
- mc-server
|
||||||
- minecraft_proxy
|
- minecraft_proxy
|
||||||
restart: on-failure:3
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/backup.env
|
- ./env/backup.env
|
||||||
volumes:
|
volumes:
|
||||||
- minecraft_server_backup:/mnt/restic
|
- minecraft_server_backup:/mnt/restic
|
||||||
- minecraft_server_data:/data/minecraft_server_data:ro
|
- minecraft_server_data:/data/minecraft_server_data:ro
|
||||||
- minecraft_proxy_data:/data/minecraft_proxy_data:ro
|
- minecraft_proxy_data:/data/minecraft_proxy_data:ro
|
||||||
- minecraft_rcon_data:/data/minecraft_rcon_data:ro
|
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
network_mode: none
|
network_mode: none
|
||||||
@@ -30,5 +29,3 @@ volumes:
|
|||||||
name: minecraft_server_data
|
name: minecraft_server_data
|
||||||
minecraft_proxy_data:
|
minecraft_proxy_data:
|
||||||
name: minecraft_proxy_data
|
name: minecraft_proxy_data
|
||||||
minecraft_rcon_data:
|
|
||||||
name: minecraft_rcon_data
|
|
||||||
|
|||||||
+2
-31
@@ -5,7 +5,7 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- minecraft_proxy
|
- minecraft_proxy
|
||||||
- minecraft_server
|
- minecraft_server
|
||||||
restart: on-failure:3
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/proxy.env
|
- ./env/proxy.env
|
||||||
environment:
|
environment:
|
||||||
@@ -32,7 +32,7 @@ services:
|
|||||||
- minecraft_server
|
- minecraft_server
|
||||||
depends_on:
|
depends_on:
|
||||||
- minecraft_proxy
|
- minecraft_proxy
|
||||||
restart: on-failure:3
|
restart: on-failure:7
|
||||||
ports:
|
ports:
|
||||||
# Server Minecraft port (Disable if you use proxy)
|
# Server Minecraft port (Disable if you use proxy)
|
||||||
# - "25565:25565"
|
# - "25565:25565"
|
||||||
@@ -65,40 +65,11 @@ services:
|
|||||||
reservations:
|
reservations:
|
||||||
cpus: '0.01'
|
cpus: '0.01'
|
||||||
memory: 20M
|
memory: 20M
|
||||||
|
|
||||||
rcon-web:
|
|
||||||
image: itzg/rcon:latest
|
|
||||||
container_name: minecraft_rcon_web
|
|
||||||
profiles:
|
|
||||||
- mc-web
|
|
||||||
restart: on-failure:3
|
|
||||||
depends_on:
|
|
||||||
- minecraft_server
|
|
||||||
- minecraft_proxy
|
|
||||||
environment:
|
|
||||||
RWA_USERNAME: admin
|
|
||||||
RWA_PASSWORD: admin
|
|
||||||
RWA_ADMIN: "TRUE"
|
|
||||||
# is referring to the hostname of 'minecraft_server' compose service below
|
|
||||||
RWA_RCON_HOST: minecraft_server
|
|
||||||
RWA_RCON_PASSWORD: 6hxU3Oxmh2Q8e6S9fjkdWJikRCON_PASSWORD
|
|
||||||
ports:
|
|
||||||
# web UI port
|
|
||||||
- "4326:4326"
|
|
||||||
# websocket access from UI
|
|
||||||
- "4327:4327"
|
|
||||||
volumes:
|
|
||||||
- minecraft_rcon_data:/opt/rcon-web-admin/db
|
|
||||||
networks:
|
|
||||||
- minecraft-network
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
minecraft_server_data:
|
minecraft_server_data:
|
||||||
name: minecraft_server_data
|
name: minecraft_server_data
|
||||||
minecraft_proxy_data:
|
minecraft_proxy_data:
|
||||||
name: minecraft_proxy_data
|
name: minecraft_proxy_data
|
||||||
minecraft_rcon_data:
|
|
||||||
name: minecraft_rcon_data
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
minecraft-network:
|
minecraft-network:
|
||||||
|
|||||||
@@ -5,16 +5,18 @@ services:
|
|||||||
container_name: omni-tools0
|
container_name: omni-tools0
|
||||||
profiles:
|
profiles:
|
||||||
- omni-tools
|
- omni-tools
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- omni-tools-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
- SYS_ADMIN
|
- SYS_ADMIN
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
@@ -30,16 +32,18 @@ services:
|
|||||||
container_name: omni-tools1
|
container_name: omni-tools1
|
||||||
profiles:
|
profiles:
|
||||||
- omni-tools
|
- omni-tools
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- omni-tools-network
|
- caddy-tools
|
||||||
read_only: false
|
read_only: false
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
- SYS_ADMIN
|
- SYS_ADMIN
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
@@ -51,6 +55,6 @@ services:
|
|||||||
memory: 20M
|
memory: 20M
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
omni-tools-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: omni-tools-network
|
name: caddy-tools
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
|
name: openwebui
|
||||||
|
|
||||||
services:
|
services:
|
||||||
ollama:
|
ollama:
|
||||||
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest}
|
||||||
#platform: linux/amd64
|
|
||||||
container_name: ollama
|
container_name: ollama
|
||||||
profiles:
|
profiles:
|
||||||
- open-webui
|
- openwebui
|
||||||
- ollama
|
- ollama
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
tty: true
|
tty: true
|
||||||
volumes:
|
volumes:
|
||||||
- ollama:/root/.ollama
|
- ollama:/root/.ollama
|
||||||
@@ -16,42 +17,89 @@ services:
|
|||||||
# - ${OLLAMA_PORT-11434}:11434
|
# - ${OLLAMA_PORT-11434}:11434
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/ollama.env
|
- ./env/ollama.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
networks:
|
networks:
|
||||||
- open-webui-network
|
- openwebui-internal
|
||||||
devices:
|
# devices:
|
||||||
- /dev/dri
|
# - /dev/dri
|
||||||
- /dev/kfd
|
# - /dev/kfd
|
||||||
|
|
||||||
open-webui:
|
openwebui-postgres:
|
||||||
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
|
image: postgres:17-alpine
|
||||||
container_name: open-webui
|
container_name: openwebui-postgres
|
||||||
profiles:
|
profiles:
|
||||||
- open-webui
|
- openwebui
|
||||||
|
env_file:
|
||||||
|
- ./env/openwebui-postgres.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- open-webui:/app/backend/data
|
- openwebui-postgres:/var/lib/postgresql/data
|
||||||
|
restart: on-failure:7
|
||||||
|
networks:
|
||||||
|
- openwebui-internal
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 3s
|
||||||
|
retries: 5
|
||||||
|
|
||||||
|
# pgadmin:
|
||||||
|
# image: dpage/pgadmin4:latest
|
||||||
|
# container_name: pgadmin
|
||||||
|
# profiles:
|
||||||
|
# - openwebui
|
||||||
|
# env_file:
|
||||||
|
# - ./env/openwebui-pgadmin.env
|
||||||
|
# volumes:
|
||||||
|
# - openwebui-pgadmin:/var/lib/pgadmin
|
||||||
|
# restart: on-failure:7
|
||||||
|
# depends_on:
|
||||||
|
# openwebui-postgres:
|
||||||
|
# condition: service_healthy
|
||||||
|
# networks:
|
||||||
|
# - openwebui-network
|
||||||
|
|
||||||
|
|
||||||
|
openwebui:
|
||||||
|
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
|
||||||
|
container_name: openwebui
|
||||||
|
profiles:
|
||||||
|
- openwebui
|
||||||
|
volumes:
|
||||||
|
- openwebui:/app/backend/data
|
||||||
depends_on:
|
depends_on:
|
||||||
- ollama
|
- ollama
|
||||||
- caddy
|
- caddy
|
||||||
|
- openwebui-postgres
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/open-webui.env
|
- ./env/openwebui.env
|
||||||
#environment:
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
# - UID=${PUID:-1000}
|
# - UID=${PUID:-1000}
|
||||||
# - GID=${PGID:-1000}
|
# - GID=${PGID:-1000}
|
||||||
# ports:
|
# ports:
|
||||||
# - ${OPEN_WEBUI_PORT-3000}:8080
|
# - ${OPEN_WEBUI_PORT-3000}:8080
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
networks:
|
networks:
|
||||||
- open-webui-network
|
- caddy-ai
|
||||||
|
- openwebui-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
ollama: {}
|
ollama: {}
|
||||||
open-webui: {}
|
openwebui: {}
|
||||||
|
openwebui-postgres: {}
|
||||||
|
openwebui-pgadmin: {}
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
open-webui-network:
|
caddy-ai:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: open-webui-network
|
name: caddy-ai
|
||||||
|
openwebui-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: openwebui-internal
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
PGADMIN_DEFAULT_EMAIL=admin@local.ai
|
||||||
|
PGADMIN_DEFAULT_PASSWORD=admin123
|
||||||
|
PGADMIN_CONFIG_SERVER_MODE=False
|
||||||
|
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=False
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
POSTGRES_DB=openwebui
|
||||||
|
POSTGRES_USER=postgres
|
||||||
|
POSTGRES_PASSWORD=securepassword123
|
||||||
+3
@@ -10,6 +10,9 @@ ANONYMIZED_TELEMETRY=false
|
|||||||
#OPENAI_API_BASE_URL=
|
#OPENAI_API_BASE_URL=
|
||||||
#OPENAI_API_KEY=
|
#OPENAI_API_KEY=
|
||||||
|
|
||||||
|
# Database configuration
|
||||||
|
DATABASE_URL=postgresql://postgres:securepassword123@openwebui-postgres:5432/openwebui
|
||||||
|
|
||||||
# Only with stable-diffusion-webui
|
# Only with stable-diffusion-webui
|
||||||
#ENABLE_IMAGE_GENERATION=true
|
#ENABLE_IMAGE_GENERATION=true
|
||||||
#AUTOMATIC1111_BASE_URL=http://stable-diffusion-webui:7860
|
#AUTOMATIC1111_BASE_URL=http://stable-diffusion-webui:7860
|
||||||
@@ -5,12 +5,13 @@ services:
|
|||||||
container_name: openssh
|
container_name: openssh
|
||||||
profiles:
|
profiles:
|
||||||
- openssh
|
- openssh
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/openssh.env
|
- ./env/openssh.env
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- openssh_config:/config:rw
|
- openssh_config:/config:rw
|
||||||
- ./config/authorized_keys:/authorized_ssh_keys:ro
|
- ./config/authorized_keys:/authorized_ssh_keys:ro
|
||||||
@@ -29,7 +30,6 @@ services:
|
|||||||
- minecraft_server_backup:/minecraft_server_backup:rw
|
- minecraft_server_backup:/minecraft_server_backup:rw
|
||||||
- minecraft_server_data:/minecraft_server_data:rw
|
- minecraft_server_data:/minecraft_server_data:rw
|
||||||
- minecraft_proxy_data:/minecraft_proxy_data:rw
|
- minecraft_proxy_data:/minecraft_proxy_data:rw
|
||||||
- minecraft_rcon_data:/minecraft_rcon_data:rw
|
|
||||||
- forgejo_data:/forgejo_data:rw
|
- forgejo_data:/forgejo_data:rw
|
||||||
- forgejo_db:/forgejo_db:rw
|
- forgejo_db:/forgejo_db:rw
|
||||||
- teamfortress2_backup:/teamfortress2_backup:rw
|
- teamfortress2_backup:/teamfortress2_backup:rw
|
||||||
@@ -78,8 +78,6 @@ volumes:
|
|||||||
name: minecraft_server_data
|
name: minecraft_server_data
|
||||||
minecraft_proxy_data:
|
minecraft_proxy_data:
|
||||||
name: minecraft_proxy_data
|
name: minecraft_proxy_data
|
||||||
minecraft_rcon_data:
|
|
||||||
name: minecraft_rcon_data
|
|
||||||
# teamfortress2
|
# teamfortress2
|
||||||
teamfortress2_backup:
|
teamfortress2_backup:
|
||||||
name: teamfortress2_backup
|
name: teamfortress2_backup
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
TZ=Etc/UTC
|
|
||||||
SUDO_ACCESS=true
|
SUDO_ACCESS=true
|
||||||
PASSWORD_ACCESS=false
|
PASSWORD_ACCESS=false
|
||||||
DOCKER_MODS=linuxserver/mods:openssh-server-rsync
|
DOCKER_MODS=linuxserver/mods:openssh-server-rsync
|
||||||
|
|||||||
@@ -5,15 +5,17 @@ services:
|
|||||||
container_name: picoshare
|
container_name: picoshare
|
||||||
profiles:
|
profiles:
|
||||||
- picoshare
|
- picoshare
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/picoshare.env
|
- ./env/picoshare.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- picoshare_data:/data
|
- picoshare_data:/data
|
||||||
networks:
|
networks:
|
||||||
- picoshare-network
|
- caddy-files
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
read_only: false
|
read_only: false
|
||||||
@@ -35,6 +37,6 @@ volumes:
|
|||||||
name: picoshare_data
|
name: picoshare_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
picoshare-network:
|
caddy-files:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: picoshare-network
|
name: caddy-files
|
||||||
|
|||||||
@@ -274,6 +274,17 @@ dir = PATH "data"
|
|||||||
;version = "latest"
|
;version = "latest"
|
||||||
;bucket = "my-bucket"
|
;bucket = "my-bucket"
|
||||||
|
|
||||||
|
;[shlink]
|
||||||
|
; - Shlink requires you to make a post call with a generated API key.
|
||||||
|
; use this section to setup the API key and URL. In order to use this section,
|
||||||
|
; "urlshortener" needs to point to the base URL of your PrivateBin
|
||||||
|
; instance with "?shortenviashlink&link=" appended. For example:
|
||||||
|
; urlshortener = "${basepath}?shortenviashlink&link="
|
||||||
|
; This URL will in turn call Shlink on the server side, using the URL from
|
||||||
|
; "apiurl" and the API Key from the "apikey" parameters below.
|
||||||
|
; apiurl = "https://shlink.example.com/rest/v3/short-urls"
|
||||||
|
; apikey = "your_api_key"
|
||||||
|
|
||||||
;[yourls]
|
;[yourls]
|
||||||
; When using YOURLS as a "urlshortener" config item:
|
; When using YOURLS as a "urlshortener" config item:
|
||||||
; - By default, "urlshortener" will point to the YOURLS API URL, with or without
|
; - By default, "urlshortener" will point to the YOURLS API URL, with or without
|
||||||
|
|||||||
@@ -5,14 +5,16 @@ services:
|
|||||||
container_name: privatebin
|
container_name: privatebin
|
||||||
profiles:
|
profiles:
|
||||||
- privatebin
|
- privatebin
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
volumes:
|
volumes:
|
||||||
- privatebin_data:/srv/data
|
- privatebin_data:/srv/data
|
||||||
- ./config/conf.php:/srv/cfg/conf.php:ro
|
- ./config/conf.php:/srv/cfg/conf.php:ro
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
networks:
|
networks:
|
||||||
- privatebin-network
|
- caddy-tools
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
read_only: true
|
read_only: true
|
||||||
@@ -30,6 +32,6 @@ volumes:
|
|||||||
name: privatebin_data
|
name: privatebin_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
privatebin-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: privatebin-network
|
name: caddy-tools
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: projectsend
|
container_name: projectsend
|
||||||
profiles:
|
profiles:
|
||||||
- projectsend
|
- projectsend
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -14,7 +14,8 @@ services:
|
|||||||
- projectsend_config:/config
|
- projectsend_config:/config
|
||||||
- projectsend_share:/data
|
- projectsend_share:/data
|
||||||
networks:
|
networks:
|
||||||
- projectsend-network
|
- caddy-files
|
||||||
|
- projectsend-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
@@ -29,14 +30,16 @@ services:
|
|||||||
- projectsend
|
- projectsend
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
volumes:
|
volumes:
|
||||||
- projectsend_db:/var/lib/mysql:rw
|
- projectsend_db:/var/lib/mysql:rw
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/projectsend_db.env
|
- ./env/projectsend_db.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
networks:
|
networks:
|
||||||
- projectsend-network
|
- projectsend-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -50,6 +53,9 @@ volumes:
|
|||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
projectsend-network:
|
caddy-files:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: projectsend-network
|
name: caddy-files
|
||||||
|
projectsend-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: projectsend-internal
|
||||||
|
|||||||
@@ -5,16 +5,18 @@ services:
|
|||||||
container_name: psitransfer
|
container_name: psitransfer
|
||||||
profiles:
|
profiles:
|
||||||
- psitransfer
|
- psitransfer
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
# user: ${PUID:-1000}:${PGID:-1000}
|
# user: ${PUID:-1000}:${PGID:-1000}
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/psitransfer.env
|
- ./env/psitransfer.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- psitransfer_data:/data
|
- psitransfer_data:/data
|
||||||
networks:
|
networks:
|
||||||
- psitransfer-network
|
- caddy-files
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
read_only: true
|
read_only: true
|
||||||
@@ -32,6 +34,6 @@ volumes:
|
|||||||
name: psitransfer_data
|
name: psitransfer_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
psitransfer-network:
|
caddy-files:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: psitransfer-network
|
name: caddy-files
|
||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: qbittorrent
|
container_name: qbittorrent
|
||||||
profiles:
|
profiles:
|
||||||
- qbittorrent
|
- qbittorrent
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -13,6 +13,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
ports:
|
ports:
|
||||||
- 6881:6881
|
- 6881:6881
|
||||||
- 6881:6881/udp
|
- 6881:6881/udp
|
||||||
@@ -21,7 +22,7 @@ services:
|
|||||||
- public_data:/downloads
|
- public_data:/downloads
|
||||||
- private_data:/private_downloads
|
- private_data:/private_downloads
|
||||||
networks:
|
networks:
|
||||||
- qbittorrent-network
|
- caddy-media
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -34,6 +35,6 @@ volumes:
|
|||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
qbittorrent-network:
|
caddy-media:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: qbittorrent-network
|
name: caddy-media
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
TZ=Etc/UTC
|
|
||||||
WEBUI_PORT=8080
|
WEBUI_PORT=8080
|
||||||
TORRENTING_PORT=6881
|
TORRENTING_PORT=6881
|
||||||
# Use alternative WebUI: /vuetorrent
|
# Use alternative WebUI: /vuetorrent
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
- satisfactory_backup
|
- satisfactory_backup
|
||||||
depends_on:
|
depends_on:
|
||||||
- satisfactory_server
|
- satisfactory_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/satisfactory_backup.env
|
- ./env/satisfactory_backup.env
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
+2
-1
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: satisfactory_server
|
container_name: satisfactory_server
|
||||||
profiles:
|
profiles:
|
||||||
- satisfactory_server
|
- satisfactory_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
ports:
|
ports:
|
||||||
- 7777:7777/udp
|
- 7777:7777/udp
|
||||||
- 7777:7777/tcp
|
- 7777:7777/tcp
|
||||||
@@ -19,6 +19,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|||||||
@@ -1,17 +1,20 @@
|
|||||||
|
name: searxng
|
||||||
|
|
||||||
services:
|
services:
|
||||||
searxng:
|
searxng:
|
||||||
container_name: searxng
|
container_name: searxng
|
||||||
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
|
image: docker.io/searxng/searxng:${SEARXNG_VERSION:-latest}
|
||||||
restart: always
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
profiles:
|
profiles:
|
||||||
- searxng
|
- searxng
|
||||||
# ports:
|
|
||||||
# - ${SEARXNG_PORT-8080}:8080
|
|
||||||
env_file: ./config/searxng.env
|
env_file: ./config/searxng.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
networks:
|
networks:
|
||||||
- searxng-network
|
- caddy-tools
|
||||||
|
- searxng-internal
|
||||||
volumes:
|
volumes:
|
||||||
- searxng-config:/etc/searxng/
|
- searxng-config:/etc/searxng/
|
||||||
- searxng-data:/var/cache/searxng/
|
- searxng-data:/var/cache/searxng/
|
||||||
@@ -25,16 +28,21 @@ services:
|
|||||||
- searxng
|
- searxng
|
||||||
image: docker.io/valkey/valkey:9-alpine
|
image: docker.io/valkey/valkey:9-alpine
|
||||||
command: valkey-server --save 30 1 --loglevel warning
|
command: valkey-server --save 30 1 --loglevel warning
|
||||||
restart: always
|
restart: on-failure:7
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
networks:
|
networks:
|
||||||
- searxng-network
|
- searxng-internal
|
||||||
volumes:
|
volumes:
|
||||||
- valkey-data:/data/
|
- valkey-data:/data/
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
searxng-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: searxng-network
|
name: caddy-tools
|
||||||
|
searxng-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: searxng-internal
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
searxng-data: {}
|
searxng-data: {}
|
||||||
|
|||||||
@@ -5,16 +5,18 @@ services:
|
|||||||
container_name: stirlingpdf
|
container_name: stirlingpdf
|
||||||
profiles:
|
profiles:
|
||||||
- stirlingpdf
|
- stirlingpdf
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/stirlingpdf.env
|
- ./env/stirlingpdf.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- stirlingpdf_config:/configs
|
- stirlingpdf_config:/configs
|
||||||
- stirlingpdf_tessdata:/usr/share/tessdata
|
- stirlingpdf_tessdata:/usr/share/tessdata
|
||||||
networks:
|
networks:
|
||||||
- stirlingpdf-network
|
- caddy-tools
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
read_only: false
|
read_only: false
|
||||||
@@ -26,6 +28,6 @@ volumes:
|
|||||||
name: stirlingpdf_tessdata
|
name: stirlingpdf_tessdata
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
stirlingpdf-network:
|
caddy-tools:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: stirlingpdf-network
|
name: caddy-tools
|
||||||
@@ -7,18 +7,19 @@ services:
|
|||||||
- syncthing
|
- syncthing
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/syncthing.env
|
- ./env/syncthing.env
|
||||||
environment:
|
environment:
|
||||||
- PUID=${PUID:-1000}
|
- PUID=${PUID:-1000}
|
||||||
- PGID=${PGID:-1000}
|
- PGID=${PGID:-1000}
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- syncthing_config:/config
|
- syncthing_config:/config
|
||||||
- public_data:/data1
|
- public_data:/data1
|
||||||
- private_data:/data2
|
- private_data:/data2
|
||||||
networks:
|
networks:
|
||||||
- syncthing-network
|
- caddy-media
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -31,6 +32,6 @@ volumes:
|
|||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
syncthing-network:
|
caddy-media:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: syncthing-network
|
name: caddy-media
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
TZ=Etc/UTC
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
- teamfortress2_backup
|
- teamfortress2_backup
|
||||||
depends_on:
|
depends_on:
|
||||||
- teamfortress2_server
|
- teamfortress2_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/teamfortress2_backup.env
|
- ./env/teamfortress2_backup.env
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
+4
-2
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: teamfortress2_server
|
container_name: teamfortress2_server
|
||||||
profiles:
|
profiles:
|
||||||
- teamfortress2_server
|
- teamfortress2_server
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
ports:
|
ports:
|
||||||
- "27015:27015/tcp"
|
- "27015:27015/tcp"
|
||||||
- "27015:27015/udp"
|
- "27015:27015/udp"
|
||||||
@@ -15,9 +15,11 @@ services:
|
|||||||
- teamfortress2-network
|
- teamfortress2-network
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/teamfortress2.env
|
- ./env/teamfortress2.env
|
||||||
# environment:
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
# - PUID=${PUID:-1000}
|
# - PUID=${PUID:-1000}
|
||||||
# - PGID=${PGID:-1000}
|
# - PGID=${PGID:-1000}
|
||||||
|
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
container_name: transmission
|
container_name: transmission
|
||||||
profiles:
|
profiles:
|
||||||
- transmission
|
- transmission
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
@@ -18,7 +18,7 @@ services:
|
|||||||
- public_data:/downloads
|
- public_data:/downloads
|
||||||
- transmission_watch:/watch
|
- transmission_watch:/watch
|
||||||
networks:
|
networks:
|
||||||
- transmission-network
|
- caddy-media
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -33,6 +33,6 @@ volumes:
|
|||||||
name: private_data
|
name: private_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
transmission-network:
|
caddy-media:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: transmission-network
|
name: caddy-media
|
||||||
@@ -7,12 +7,13 @@ services:
|
|||||||
- uptime-kuma
|
- uptime-kuma
|
||||||
volumes:
|
volumes:
|
||||||
- uptimekuma_data:/app/data
|
- uptimekuma_data:/app/data
|
||||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
environment:
|
||||||
restart: on-failure:5
|
- TZ=${TZ:-Europe/Paris}
|
||||||
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- uptimekuma-network
|
- caddy-infra
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
cap_drop:
|
cap_drop:
|
||||||
@@ -23,6 +24,6 @@ volumes:
|
|||||||
name: uptimekuma_data
|
name: uptimekuma_data
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
uptimekuma-network:
|
caddy-infra:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: uptimekuma-network
|
name: caddy-infra
|
||||||
|
|||||||
@@ -5,17 +5,20 @@ services:
|
|||||||
container_name: wordpress
|
container_name: wordpress
|
||||||
profiles:
|
profiles:
|
||||||
- wordpress
|
- wordpress
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
depends_on:
|
depends_on:
|
||||||
- wordpress_db
|
- wordpress_db
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/wordpress.env
|
- ./env/wordpress.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/wordpress/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro
|
- ./config/wordpress/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro
|
||||||
- wordpress:/var/www/html:rw
|
- wordpress:/var/www/html:rw
|
||||||
networks:
|
networks:
|
||||||
- wordpress-network
|
- caddy-web
|
||||||
|
- wordpress-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -28,14 +31,16 @@ services:
|
|||||||
- wordpress
|
- wordpress
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
volumes:
|
volumes:
|
||||||
- wordpress_db:/var/lib/mysql:rw
|
- wordpress_db:/var/lib/mysql:rw
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/wordpress_db.env
|
- ./env/wordpress_db.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
networks:
|
networks:
|
||||||
- wordpress-network
|
- wordpress-internal
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@@ -46,9 +51,11 @@ services:
|
|||||||
- wordpress
|
- wordpress
|
||||||
depends_on:
|
depends_on:
|
||||||
- wordpress
|
- wordpress
|
||||||
restart: on-failure:5
|
restart: on-failure:7
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/wordpress_backup.env
|
- ./env/wordpress_backup.env
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ:-Europe/Paris}
|
||||||
volumes:
|
volumes:
|
||||||
- wordpress_backup:/mnt/restic
|
- wordpress_backup:/mnt/restic
|
||||||
- wordpress_db:/data/wordpress_db:ro
|
- wordpress_db:/data/wordpress_db:ro
|
||||||
@@ -68,6 +75,9 @@ volumes:
|
|||||||
name: wordpress_backup
|
name: wordpress_backup
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
wordpress-network:
|
caddy-web:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: wordpress-network
|
name: caddy-web
|
||||||
|
wordpress-internal:
|
||||||
|
driver: bridge
|
||||||
|
name: wordpress-internal
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
DOCKER_PROFILES += main_infrastructure caddy
|
||||||
|
DOCKER_PROFILES += openssh
|
||||||
|
DOCKER_PROFILES += openwebui ollama
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
DOCKER_PROFILES += main_infrastructure caddy
|
DOCKER_PROFILES += main_infrastructure caddy
|
||||||
DOCKER_PROFILES += qbittorrent openssh
|
DOCKER_PROFILES += qbittorrent openssh
|
||||||
DOCKER_PROFILES += uptime-kuma
|
DOCKER_PROFILES += uptime-kuma dozzle
|
||||||
# transmission
|
# transmission
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
DOCKER_PROFILES += main_infrastructure caddy homepage
|
DOCKER_PROFILES += main_infrastructure caddy homepage
|
||||||
DOCKER_PROFILES += it-tools omni-tools cyberchef
|
DOCKER_PROFILES += it-tools omni-tools cyberchef
|
||||||
DOCKER_PROFILES += qbittorrent openssh
|
|
||||||
|
|||||||
+86
-76
@@ -1,71 +1,71 @@
|
|||||||
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36" version="24.7.17">
|
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36">
|
||||||
<diagram name="Page-1" id="c7558073-3199-34d8-9f00-42111426c3f3">
|
<diagram name="Page-1" id="c7558073-3199-34d8-9f00-42111426c3f3">
|
||||||
<mxGraphModel dx="1728" dy="918" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="none" math="0" shadow="0">
|
<mxGraphModel dx="1174" dy="633" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="none" math="0" shadow="0">
|
||||||
<root>
|
<root>
|
||||||
<mxCell id="0" />
|
<mxCell id="0" />
|
||||||
<mxCell id="1" parent="0" />
|
<mxCell id="1" parent="0" />
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-139" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-98" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-139" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-98">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-148" value="80 &amp; 443" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-139" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-148" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-139" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="80 &amp; 443" vertex="1">
|
||||||
<mxGeometry x="0.212" y="-1" relative="1" as="geometry">
|
<mxGeometry relative="1" x="0.212" y="-1" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-140" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-137" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-140" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#e1d5e7;strokeColor=#9673a6;" target="wsmfsViyqE6_RoJ9hA4X-137">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-151" value="25565" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-140" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-151" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-140" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="25565" vertex="1">
|
||||||
<mxGeometry x="-0.0311" y="3" relative="1" as="geometry">
|
<mxGeometry relative="1" x="-0.0311" y="3" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-141" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;strokeWidth=2;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-136" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-141" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-136">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-152" value="7777" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-141" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-152" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-141" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="7777" vertex="1">
|
||||||
<mxGeometry x="-0.0455" y="-1" relative="1" as="geometry">
|
<mxGeometry relative="1" x="-0.0455" y="-1" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-143" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;curved=0;strokeWidth=2;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-138" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-143" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;curved=0;strokeWidth=2;fillColor=#e1d5e7;strokeColor=#9673a6;" target="wsmfsViyqE6_RoJ9hA4X-138">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-172" value="26900" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-143" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-172" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-143" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="26900" vertex="1">
|
||||||
<mxGeometry x="0.0792" relative="1" as="geometry">
|
<mxGeometry relative="1" x="0.0792" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-145" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;curved=0;fillColor=#dae8fc;strokeColor=#FF3399;strokeWidth=2;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-125" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-145" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;curved=0;fillColor=#dae8fc;strokeColor=#FF3399;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-125">
|
||||||
<mxGeometry relative="1" as="geometry">
|
<mxGeometry relative="1" as="geometry">
|
||||||
<mxPoint x="230" y="470" as="targetPoint" />
|
|
||||||
<Array as="points">
|
<Array as="points">
|
||||||
<mxPoint x="220" y="399" />
|
<mxPoint x="220" y="399" />
|
||||||
<mxPoint x="220" y="480" />
|
<mxPoint x="220" y="480" />
|
||||||
<mxPoint x="298" y="480" />
|
<mxPoint x="298" y="480" />
|
||||||
</Array>
|
</Array>
|
||||||
|
<mxPoint x="230" y="470" as="targetPoint" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-150" value="2222" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-145" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-150" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-145" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="2222" vertex="1">
|
||||||
<mxGeometry x="-0.0442" y="-1" relative="1" as="geometry">
|
<mxGeometry relative="1" x="-0.0442" y="-1" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-147" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;curved=0;fillColor=#e1d5e7;strokeColor=#ff3399;strokeWidth=2;" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-115" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-147" edge="1" parent="1" source="3" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0.25;entryY=1;entryDx=0;entryDy=0;curved=0;fillColor=#e1d5e7;strokeColor=#ff3399;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-115">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-149" value="22" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="wsmfsViyqE6_RoJ9hA4X-147" vertex="1" connectable="0">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-149" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-147" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="22" vertex="1">
|
||||||
<mxGeometry x="0.3731" y="-3" relative="1" as="geometry">
|
<mxGeometry relative="1" x="0.3731" y="-3" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="3" value="bensuperpc.org" style="whiteSpace=wrap;align=center;verticalAlign=middle;fontStyle=1;strokeWidth=3;fillColor=#dae8fc;strokeColor=#6c8ebf;fontSize=11;" parent="1" vertex="1">
|
<mxCell id="3" parent="1" style="whiteSpace=wrap;align=center;verticalAlign=middle;fontStyle=1;strokeWidth=3;fillColor=#dae8fc;strokeColor=#6c8ebf;fontSize=11;" value="bensuperpc.org" vertex="1">
|
||||||
<mxGeometry x="19" y="354" width="90" height="60" as="geometry" />
|
<mxGeometry height="60" width="90" x="19" y="354" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-153" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;fillColor=#d5e8d4;strokeColor=#82b366;curved=0;strokeWidth=2;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-115" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-153" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=0.75;entryY=1;entryDx=0;entryDy=0;fillColor=#d5e8d4;strokeColor=#82b366;curved=0;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-115">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-154" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.035;exitY=1;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;curved=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;exitPerimeter=0;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-125" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-154" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.035;exitY=1;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;curved=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;exitPerimeter=0;" target="wsmfsViyqE6_RoJ9hA4X-125">
|
||||||
<mxGeometry relative="1" as="geometry">
|
<mxGeometry relative="1" as="geometry">
|
||||||
<Array as="points">
|
<Array as="points">
|
||||||
<mxPoint x="300" y="429" />
|
<mxPoint x="300" y="429" />
|
||||||
@@ -74,101 +74,111 @@
|
|||||||
</Array>
|
</Array>
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-157" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.062;exitY=-0.005;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-102" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-157" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.062;exitY=-0.005;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-102">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-158" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.208;exitY=0.011;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-129" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-158" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.208;exitY=0.011;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=light-dark(#82B366,#FF0000);" target="wsmfsViyqE6_RoJ9hA4X-129">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-159" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.208;exitY=0.961;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-114" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-159" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.208;exitY=0.961;exitDx=0;exitDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-114">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-160" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.354;exitY=0.014;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-131" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-160" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.354;exitY=0.014;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-131">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-161" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.354;exitY=1.009;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-107" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-161" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.354;exitY=1.009;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-107">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-162" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-130" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-162" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#d5e8d4;strokeColor=#82b366;strokeWidth=2;" target="wsmfsViyqE6_RoJ9hA4X-130">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-163" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-108" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-163" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-108">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-164" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.646;exitY=0.021;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-132" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-164" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.646;exitY=0.021;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-132">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-165" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.646;exitY=0.985;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;exitPerimeter=0;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-126" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-165" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.646;exitY=0.985;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;exitPerimeter=0;" target="wsmfsViyqE6_RoJ9hA4X-126">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-168" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.792;exitY=-0.002;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-133" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-168" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.792;exitY=-0.002;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-133">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-169" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.792;exitY=1.015;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-127" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-169" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.792;exitY=1.015;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-127">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-170" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.938;exitY=0.981;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-128" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-170" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.938;exitY=0.981;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-128">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-171" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.938;exitY=0.011;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-134" edge="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-171" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.938;exitY=0.011;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitPerimeter=0;strokeWidth=2;fillColor=#d5e8d4;strokeColor=#82b366;" target="wsmfsViyqE6_RoJ9hA4X-134">
|
||||||
<mxGeometry relative="1" as="geometry" />
|
<mxGeometry relative="1" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-98" value="<p style="margin: 0px; margin-top: 4px; text-align: center; text-decoration: underline;"><strong>Reverse Proxy</strong></p><hr><p style="margin: 0px; margin-left: 8px;">Caddy server</p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-98" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#ffe6cc;strokeColor=#d79b00;" value="<p style="margin: 0px; margin-top: 4px; text-align: center; text-decoration: underline;"><strong>Reverse Proxy</strong></p><hr><p style="margin: 0px; margin-left: 8px;">Caddy server</p>" vertex="1">
|
||||||
<mxGeometry x="270" y="339" width="890" height="90" as="geometry" />
|
<mxGeometry height="90" width="890" x="270" y="339" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-102" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Homepage</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">www.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-102" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Homepage</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">www.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="270" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="270" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-107" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">File sharing 1</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">dufs.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-107" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">File sharing</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">dufs.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">picoshare.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">projectsend.bensuperpc.org</font><span style="font-size: 7px;"></span></p>" vertex="1">
|
||||||
<mxGeometry x="530" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="530" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-108" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Jellyfin</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">jellyfin.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-108" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Jellyfin</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">jellyfin.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="660" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="660" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-114" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Wordpress</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">wordpress.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-114" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Wordpress</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">wordpress.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="400" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="400" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-115" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Gitea</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">gitea.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-115" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Gitea</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">gitea.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="140" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="140" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-125" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">OpenSSH</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-125" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">OpenSSH</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="270" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="270" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-126" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Torrent 1</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">qbittorrent.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-126" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Torrent</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">qbittorrent.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="790" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="790" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-127" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Torrent 2</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">transmission.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-127" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;"><span style="background-color: transparent; color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">It-tools</span></font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><span style="font-size: 8px;">it-tools.bensuperpc.org</span></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="920" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="920" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-128" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Syncthing</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">syncthing.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-128" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;"><font style="font-size: 12px;">Syncthing</font></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">syncthing.bensuperpc.org</font></p><p style="margin: 0px 0px 0px 8px; font-size: 11px;"><br></p>" vertex="1">
|
||||||
<mxGeometry x="1050" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="1050" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-129" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">It-tools</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">it-tools.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="bhLM7CCq5H-ZF5HyWpbC-4" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-129" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=light-dark(#000000,#FF0000);strokeWidth=2;">
|
||||||
<mxGeometry x="400" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry relative="1" as="geometry">
|
||||||
|
<mxPoint x="455" y="340" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-130" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">File sharing 3<br></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">picoshare.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="bhLM7CCq5H-ZF5HyWpbC-5" connectable="0" parent="bhLM7CCq5H-ZF5HyWpbC-4" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" value="<div><span style="background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">80 &amp;</span></div><div><span style="background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));">443</span></div>" vertex="1">
|
||||||
<mxGeometry x="660" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry relative="1" x="0.1551" y="3" as="geometry">
|
||||||
|
<mxPoint x="-3" y="-11" as="offset" />
|
||||||
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-131" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">File sharing 2<br></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">projectsend.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-129" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=light-dark(#E6FFCC,#99004D);" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Authelia</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">authelia.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="530" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="400" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-132" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Docker admin</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">yacht.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-130" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">SearXNG<br></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><span style="font-size: 7px;">searxng.bensuperpc.org</span></p>" vertex="1">
|
||||||
<mxGeometry x="790" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="660" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-133" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">uptimekuma</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">uptimekuma.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-131" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Openwebui<br></p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">openwebui.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="920" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="530" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-134" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">memos</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">memos.bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-132" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Docker admin</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">yacht.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="1050" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="790" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-136" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Satisfactory</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-133" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">uptimekuma</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 7px;">uptimekuma.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="9" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="920" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-137" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Minecraft</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-134" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#E6FFCC" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">memos</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">memos.bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="9" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="1050" y="180" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-138" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">7 Days to die</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-136" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Satisfactory</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" vertex="1">
|
||||||
<mxGeometry x="140" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry height="90" width="110" x="9" y="500" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-137" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">Minecraft</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" vertex="1">
|
||||||
|
<mxGeometry height="90" width="110" x="9" y="180" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="wsmfsViyqE6_RoJ9hA4X-138" parent="1" style="verticalAlign=middle;align=center;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=1;fontStyle=1;strokeWidth=3;fillColor=#e1d5e7;strokeColor=#9673a6;" value="<p style="margin: 4px 0px 0px; text-align: center; text-decoration: underline;">7 Days to die</p><hr style=""><p style="margin: 0px 0px 0px 8px;"><font style="font-size: 8px;">bensuperpc.org</font></p>" vertex="1">
|
||||||
|
<mxGeometry height="90" width="110" x="140" y="500" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
</root>
|
</root>
|
||||||
</mxGraphModel>
|
</mxGraphModel>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 293 KiB After Width: | Height: | Size: 221 KiB |
@@ -13,7 +13,6 @@ volumes=(
|
|||||||
forgejo_data
|
forgejo_data
|
||||||
wordpress_db
|
wordpress_db
|
||||||
minecraft_proxy_data
|
minecraft_proxy_data
|
||||||
minecraft_rcon_data
|
|
||||||
minecraft_server_data
|
minecraft_server_data
|
||||||
minecraft_server_backup
|
minecraft_server_backup
|
||||||
stirlingpdf_tessdata
|
stirlingpdf_tessdata
|
||||||
|
|||||||
Reference in New Issue
Block a user