mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-07-23 10:52:27 +02:00
Compare commits
32 Commits
951d1130b0
...
main
Author | SHA1 | Date | |
---|---|---|---|
fcd4dc85bc | |||
840c6fa5b5 | |||
628c6fe906 | |||
19a6c49949 | |||
045d142e27 | |||
e5e13b11e8 | |||
736959c540 | |||
e942d364fe | |||
c7b7ce8585 | |||
2d268629b5 | |||
ccc7f82f0a | |||
49af326783 | |||
d6d8fedc11 | |||
22f4237b49 | |||
81c1188014 | |||
ee2ed9273a | |||
14ca102a0f | |||
4fc62cb648 | |||
e7e544e774 | |||
e5472d4abb | |||
f90b8301bd | |||
970aad479c | |||
81c81a5d83 | |||
7595072298 | |||
ec5cb3c38c | |||
591eb61c40 | |||
b486ac3d0d | |||
d111652a1c | |||
18db276b49 | |||
4c910bdf2e | |||
2fbbba051f | |||
9a6ac97872 |
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@@ -26,8 +26,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: "recursive"
|
submodules: "recursive"
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
- name: "Check compose"
|
||||||
|
run: make check
|
||||||
- name: "Update server image"
|
- name: "Update server image"
|
||||||
run: make update-docker
|
run: make image-update
|
||||||
- name: "Build server"
|
- name: "Build server"
|
||||||
run: make build
|
run: make build
|
||||||
# - name: "Start server"
|
# - name: "Start server"
|
||||||
|
9
.gitmodules
vendored
9
.gitmodules
vendored
@@ -0,0 +1,9 @@
|
|||||||
|
[submodule "infrastructure/services/minecraft-server"]
|
||||||
|
path = infrastructure/services/minecraft-server
|
||||||
|
url = git@github.com:bensuperpc/docker-minecraft-server.git
|
||||||
|
[submodule "infrastructure/services/7daystodie"]
|
||||||
|
path = infrastructure/services/7daystodie-server
|
||||||
|
url = git@github.com:bensuperpc/docker-7daystodie.git
|
||||||
|
[submodule "infrastructure/services/satisfactory"]
|
||||||
|
path = infrastructure/services/satisfactory-server
|
||||||
|
url = git@github.com:bensuperpc/docker-satisfactory.git
|
||||||
|
@@ -44,8 +44,12 @@ start:
|
|||||||
start-at:
|
start-at:
|
||||||
$(DOCKER_COMPOSE_COMMAND) up
|
$(DOCKER_COMPOSE_COMMAND) up
|
||||||
|
|
||||||
.PHONY: docker-check
|
.PHONY: no-start
|
||||||
docker-check:
|
no-start:
|
||||||
|
$(DOCKER_COMPOSE_COMMAND) up --no-start
|
||||||
|
|
||||||
|
.PHONY: check
|
||||||
|
check:
|
||||||
$(DOCKER_COMPOSE_COMMAND) config
|
$(DOCKER_COMPOSE_COMMAND) config
|
||||||
|
|
||||||
.PHONY: stop
|
.PHONY: stop
|
||||||
@@ -67,15 +71,22 @@ state:
|
|||||||
$(DOCKER_COMPOSE_COMMAND) ps
|
$(DOCKER_COMPOSE_COMMAND) ps
|
||||||
$(DOCKER_COMPOSE_COMMAND) top
|
$(DOCKER_COMPOSE_COMMAND) top
|
||||||
|
|
||||||
.PHONY: update-docker
|
.PHONY: volumes
|
||||||
update-docker:
|
volumes:
|
||||||
|
$(DOCKER_COMPOSE_COMMAND) config --volumes
|
||||||
|
|
||||||
|
.PHONY: image-update
|
||||||
|
image-update:
|
||||||
$(DOCKER_COMPOSE_COMMAND) pull
|
$(DOCKER_COMPOSE_COMMAND) pull
|
||||||
|
|
||||||
.PHONY: update
|
.PHONY: git-update
|
||||||
update: update-docker
|
git-update:
|
||||||
# git submodule update --init --recursive --remote
|
# git submodule update --init --recursive --remote
|
||||||
git pull --recurse-submodules --all --progress
|
git pull --recurse-submodules --all --progress
|
||||||
|
|
||||||
|
.PHONY: update
|
||||||
|
update: image-update git-update
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
docker system prune -f
|
docker system prune -f
|
||||||
|
23
Makefile
23
Makefile
@@ -11,15 +11,26 @@
|
|||||||
#// //
|
#// //
|
||||||
#//////////////////////////////////////////////////////////////
|
#//////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
ADMIN_SERVICES := openssh uptime-kuma yacht
|
||||||
BLOG_SERVICES := wordpress
|
BLOG_SERVICES := wordpress
|
||||||
|
7DAYS_TO_DIE_SERVICES := 7daystodie_server 7daystodie_backup
|
||||||
|
MINECRAFT_SERVICES := minecraft_server minecraft_backup
|
||||||
|
SATISFACTORY_SERVICES := satisfactory_server satisfactory_backup
|
||||||
|
GIT_SERVICES := forgejo forgejo-runner
|
||||||
|
# gitea gitea-runner
|
||||||
|
IA_SERVICES := open-webui
|
||||||
|
SHARING_SERVICES := psitransfer picoshare privatebin projectsend jellyfin dufs syncthing
|
||||||
TORRENTS_SERVICES := qbittorrent transmission
|
TORRENTS_SERVICES := qbittorrent transmission
|
||||||
SHARING_SERVICES := psitransfer picoshare privatebin projectsend jellyfin dufs gitea syncthing
|
UTILS_SERVICES := it-tools stirlingpdf omni-tools
|
||||||
ADMIN_SERVICES := yacht uptime-kuma openssh
|
|
||||||
UTILS_SERVICES := it-tools stirlingpdf
|
|
||||||
# gitea-runner
|
|
||||||
|
|
||||||
SERVER_DIRECTORY := infrastructure
|
MAIN_SERVICES := main_infrastructure caddy homepage
|
||||||
|
|
||||||
DOCKER_PROFILES := main_infrastructure caddy homepage $(BLOG_SERVICES) $(SHARING_SERVICES) $(TORRENTS_SERVICES) $(ADMIN_SERVICES) $(UTILS_SERVICES)
|
PROJECT_DIRECTORY := infrastructure
|
||||||
|
|
||||||
|
DOCKER_PROFILES := $(MAIN_SERVICES) \
|
||||||
|
$(ADMIN_SERVICES) $(BLOG_SERVICES) $(7DAYS_TO_DIE_SERVICES) $(MINECRAFT_SERVICES) \
|
||||||
|
$(SATISFACTORY_SERVICES) \
|
||||||
|
$(GIT_SERVICES) $(IA_SERVICES) $(SHARING_SERVICES) \
|
||||||
|
$(TORRENTS_SERVICES) $(UTILS_SERVICES)
|
||||||
|
|
||||||
include DockerCompose.mk
|
include DockerCompose.mk
|
||||||
|
167
README.md
167
README.md
@@ -15,14 +15,18 @@ If you have any **questions** or **suggestions**, feel free to open an issue or
|
|||||||
- [x] Wordpress (Via FASTCGI/caddy)
|
- [x] Wordpress (Via FASTCGI/caddy)
|
||||||
- [x] Jellyfin (Media server)
|
- [x] Jellyfin (Media server)
|
||||||
- [x] Gitea (Git server)
|
- [x] Gitea (Git server)
|
||||||
|
- [x] Forgejo (Git server, fork of Gitea)
|
||||||
- [x] Uptime Kuma (Monitoring)
|
- [x] Uptime Kuma (Monitoring)
|
||||||
- [x] qbittorrent and transmission (Torrent client/server)
|
- [x] qbittorrent and transmission (Torrent client/server)
|
||||||
- [x] SyncThing (File synchronization)
|
- [x] SyncThing (File synchronization)
|
||||||
- [x] PsiTransfer, ProjectSend, Picoshare (File sharing)
|
- [x] PsiTransfer, ProjectSend, Picoshare (File sharing)
|
||||||
- [x] it-tools (Tools for IT)
|
- [x] it-tools and omni-tools (Tools for IT)
|
||||||
|
- [x] Open-WebUI (Local chatGPT)
|
||||||
- [x] Privatebin (Pastebin)
|
- [x] Privatebin (Pastebin)
|
||||||
- [x] Yacht (Web interface for managing docker containers)
|
- [x] Yacht (Web interface for managing docker containers)
|
||||||
- [ ] Integrate games ([Satisfactory](https://github.com/bensuperpc/docker-satisfactory), [7 days to die](https://github.com/bensuperpc/docker-7daystodie), Minecraft...)
|
- [X] [Satisfactory](https://github.com/bensuperpc/docker-satisfactory)
|
||||||
|
- [x] [7 days to die](https://github.com/bensuperpc/docker-7daystodie)
|
||||||
|
- [x] [minecraft](https://github.com/bensuperpc/docker-minecraft-server)
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
@@ -42,9 +46,26 @@ 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 and 2222 on your router](http://192.168.1.1/)
|
- [Open port 80, 443, 22, 2222 and 5555 on your router](http://192.168.1.1/)
|
||||||
|
- For games server, you need to open these ports (7777, 25565, 26900, 26901, 26903)
|
||||||
|
|
||||||
***To avoid get rate limit from letsencrypt (10 certificates per 3 hours), you need to disable some certificates in the caddyfiles and enable them 3h later...***
|
List of ports used by the services in this infrastructure:
|
||||||
|
|
||||||
|
| Port number | Service | Description |
|
||||||
|
| ----------- | ------------- | ----------------- |
|
||||||
|
| 80 | Caddy | HTTP traffic |
|
||||||
|
| 443 | Caddy | HTTPS traffic |
|
||||||
|
| 22 | Forgejo | Git/SSH access |
|
||||||
|
| 2222 | OpenSSH | Global SSH access |
|
||||||
|
| 5555 | Gitea | Git/SSH access |
|
||||||
|
| 7777 | Satisfactory | Game server port |
|
||||||
|
| 25565 | Minecraft | Game server port |
|
||||||
|
| 26900 | 7 Days to Die | Game server port |
|
||||||
|
| 26901 | 7 Days to Die | Game server port |
|
||||||
|
| 26903 | 7 Days to Die | Game server port |
|
||||||
|
|
||||||
|
|
||||||
|
**To avoid get rate limit from letsencrypt (10 certificates per 3 hours), you need to disable some certificates in the caddyfiles and enable them 3h later...**
|
||||||
|
|
||||||
### Clone
|
### Clone
|
||||||
|
|
||||||
@@ -60,6 +81,8 @@ 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).
|
||||||
|
|
||||||
### Configure the domain
|
### Configure the domain
|
||||||
|
|
||||||
For all **bensuperpc.org**, you need to replace it with your domain, example: **mydomain.com**, so the same for **bensuperpc.com** ect...
|
For all **bensuperpc.org**, you need to replace it with your domain, example: **mydomain.com**, so the same for **bensuperpc.com** ect...
|
||||||
@@ -72,30 +95,36 @@ Check if all bensuperpc.* are replaced by your domain in [Caddyfile](caddy/servi
|
|||||||
|
|
||||||
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
|
||||||
|
|
||||||
| Domain name | Type | Description |
|
| Domain name | Type | Description |
|
||||||
| --- | --- | --- |
|
| ------------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
|
||||||
| [bensuperpc.org](https://bensuperpc.org) | Main | Redirect to 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 |
|
||||||
| [wordpress.bensuperpc.org](https://wordpress.bensuperpc.org) | Sub | Wordpress website |
|
| [open-webui.bensuperpc.org](https://open-webui.bensuperpc.org) | Sub | For local chatGPT |
|
||||||
| [uptimekuma.bensuperpc.org](https://uptimekuma.bensuperpc.org) | Sub | Uptime Kuma for monitoring |
|
| [wordpress.bensuperpc.org](https://wordpress.bensuperpc.org) | Sub | Wordpress website |
|
||||||
| [qbittorrent.bensuperpc.org](https://qbittorrent.bensuperpc.org) | Sub | Torrent client/server |
|
| [uptimekuma.bensuperpc.org](https://uptimekuma.bensuperpc.org) | Sub | Uptime Kuma for monitoring |
|
||||||
| [transmission.bensuperpc.org](https://transmission.bensuperpc.org) | Sub | Torrent client/server |
|
| [qbittorrent.bensuperpc.org](https://qbittorrent.bensuperpc.org) | Sub | Torrent client/server |
|
||||||
| [git.bensuperpc.org](https://git.bensuperpc.org) | Sub | Gitea for git |
|
| [transmission.bensuperpc.org](https://transmission.bensuperpc.org) | Sub | Torrent client/server |
|
||||||
| [link.bensuperpc.org](https://link.bensuperpc.org) | Sub | For link shortener |
|
| [gitea.bensuperpc.org](https://gitea.bensuperpc.org) | Sub | Gitea for git |
|
||||||
| [jellyfin.bensuperpc.org](https://jellyfin.bensuperpc.org) | Sub | Jellyfin for media server |
|
| [forgejo.bensuperpc.org](https://forgejo.bensuperpc.org/) | Sub | Fork of Gitea for git |
|
||||||
| [syncthing.bensuperpc.org](https://syncthing.bensuperpc.org) | Sub | SyncThing for file synchronization |
|
| [git.bensuperpc.org](https://git.bensuperpc.org) | Sub | Fork of Gitea for git |
|
||||||
| [psitransfer.bensuperpc.org](https://psitransfer.bensuperpc.org) | Sub | PsiTransfer for file sharing |
|
| [link.bensuperpc.org](https://link.bensuperpc.org) | Sub | For link shortener |
|
||||||
| [it-tools.bensuperpc.org](https://it-tools.bensuperpc.org) | Sub | Tools for IT |
|
| [jellyfin.bensuperpc.org](https://jellyfin.bensuperpc.org) | Sub | Jellyfin for media server |
|
||||||
| [privatebin.bensuperpc.org](https://privatebin.bensuperpc.org) | Sub | Pastebin |
|
| [syncthing.bensuperpc.org](https://syncthing.bensuperpc.org) | Sub | SyncThing for file synchronization |
|
||||||
| [yacht.bensuperpc.org](https://yacht.bensuperpc.org) | Sub | Web interface for managing docker containers |
|
| [psitransfer.bensuperpc.org](https://psitransfer.bensuperpc.org) | Sub | PsiTransfer for file sharing |
|
||||||
| [projectsend.bensuperpc.org](https://projectsend.bensuperpc.org) | Sub | ProjectSend for file sharing |
|
| [it-tools.bensuperpc.org](https://it-tools.bensuperpc.org) | Sub | Tools for IT |
|
||||||
| [picoshare.bensuperpc.org](https://picoshare.bensuperpc.org) | Sub | Picoshare for file sharing |
|
| [omni-tools.bensuperpc.org](https://omni-tools.bensuperpc.org) | Sub | Tools for IT |
|
||||||
| [dufs.bensuperpc.org](https://dufs.bensuperpc.org) | Sub | Dufs for file sharing |
|
| [privatebin.bensuperpc.org](https://privatebin.bensuperpc.org) | Sub | Pastebin |
|
||||||
| [public.bensuperpc.org](https://public.bensuperpc.org) | Sub | Caddy for file sharing |
|
| [yacht.bensuperpc.org](https://yacht.bensuperpc.org) | Sub | Web interface for managing docker containers |
|
||||||
| bensuperpc.com | Main | Redirect to www.bensuperpc.org |
|
| [projectsend.bensuperpc.org](https://projectsend.bensuperpc.org) | Sub | ProjectSend for file sharing |
|
||||||
| bensuperpc.fr | Main | Redirect to www.bensuperpc.org |
|
| [picoshare.bensuperpc.org](https://picoshare.bensuperpc.org) | Sub | Picoshare for file sharing |
|
||||||
| bensuperpc.net | Main | Redirect to www.bensuperpc.org |
|
| [dufs.bensuperpc.org](https://dufs.bensuperpc.org) | Sub | Dufs for file sharing |
|
||||||
| bensuperpc.ovh | Main | Redirect to www.bensuperpc.org |
|
| [public.bensuperpc.org](https://public.bensuperpc.org) | Sub | Caddy for file sharing |
|
||||||
|
| [memos.bensuperpc.org](https://memos.bensuperpc.org) | Sub | Caddy for file sharing |
|
||||||
|
| [stirlingpdf.bensuperpc.org](https://stirlingpdf.bensuperpc.org) | Sub | Stirling PDF tools |
|
||||||
|
| bensuperpc.com | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
||||||
|
| bensuperpc.fr | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
||||||
|
| bensuperpc.net | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
||||||
|
| bensuperpc.ovh | Main | Redirect to [www.bensuperpc.org](https://www.bensuperpc.org) |
|
||||||
|
|
||||||
### Configure the infrastructure
|
### Configure the infrastructure
|
||||||
|
|
||||||
@@ -109,12 +138,16 @@ openssl rand -base64 32
|
|||||||
|
|
||||||
Or online: [passwordsgenerator.net](https://passwordsgenerator.net/)
|
Or online: [passwordsgenerator.net](https://passwordsgenerator.net/)
|
||||||
|
|
||||||
|
#### Caddy
|
||||||
|
|
||||||
For [caddy_backup.env](infrastructure/services/caddy/env/caddy_backup.env) file, you need to change the password(s) for the restic backup.
|
For [caddy_backup.env](infrastructure/services/caddy/env/caddy_backup.env) file, you need to change the password(s) for the restic backup.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Wordpress
|
||||||
|
|
||||||
For the [wordpress.env](infrastructure/services/wordpress/env/wordpress.env) file, you need to change the password and user for the database.
|
For the [wordpress.env](infrastructure/services/wordpress/env/wordpress.env) file, you need to change the password and user for the database.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -136,6 +169,8 @@ For [wordpress_backup.env](infrastructure/services/wordpress/env/wordpress_backu
|
|||||||
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
RESTIC_PASSWORD=7L1Ncbquax0B2TCOmrjaQl9n5mnY88bQ
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Gitea
|
||||||
|
|
||||||
For [gitea.env](infrastructure/services/gitea/env/gitea.env) file, you need to change the password(s) and user for the database.
|
For [gitea.env](infrastructure/services/gitea/env/gitea.env) file, you need to change the password(s) and user for the database.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -152,6 +187,8 @@ MARIADB_USER=bensuperpc
|
|||||||
MARIADB_PASSWORD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
|
MARIADB_PASSWORD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### PsiTransfer
|
||||||
|
|
||||||
For [psitransfer.env](infrastructure/services/psitransfer/env/psitransfer.env) file, you need to change the secret key.
|
For [psitransfer.env](infrastructure/services/psitransfer/env/psitransfer.env) file, you need to change the secret key.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -172,18 +209,24 @@ MARIADB_USER=bensuperpc
|
|||||||
MARIADB_PASSWORD=wdSUa1JEZhXie5AJ5NcX1w73xmpO12EY
|
MARIADB_PASSWORD=wdSUa1JEZhXie5AJ5NcX1w73xmpO12EY
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Picoshare
|
||||||
|
|
||||||
For [picoshare.env](infrastructure/services/picoshare/env/picoshare.env) file, you need to change the secret key.
|
For [picoshare.env](infrastructure/services/picoshare/env/picoshare.env) file, you need to change the secret key.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
PS_SHARED_SECRET=CBuS4DJLqIe93xF1KGYRrnhxUFBqLD2n
|
PS_SHARED_SECRET=CBuS4DJLqIe93xF1KGYRrnhxUFBqLD2n
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Dufs
|
||||||
|
|
||||||
For [dufs.env](infrastructure/services/dufs/env/dufs.env) file, you need to change the secret key and if you want the user name.
|
For [dufs.env](infrastructure/services/dufs/env/dufs.env) file, you need to change the secret key and if you want the user name.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
DUFS_AUTH="admin:heqihlOfBmJDESGFlpbPi7P7Mi6F7RkV@/:rw|@/:ro"
|
DUFS_AUTH="admin:heqihlOfBmJDESGFlpbPi7P7Mi6F7RkV@/:rw|@/:ro"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Stirling PDF
|
||||||
|
|
||||||
For [stirlingpdf.env](infrastructure/services/stirlingpdf/env/stirlingpdf.env) file, it's **completly optional**, you can change the password(s) and user.
|
For [stirlingpdf.env](infrastructure/services/stirlingpdf/env/stirlingpdf.env) file, it's **completly optional**, you can change the password(s) and user.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -196,6 +239,8 @@ SECURITY_INITIALLOGIN_USERNAME=admin
|
|||||||
SECURITY_INITIALLOGIN_PASSWORD=Jw9U039f5xc2mFcacvGvPD9RjwIh4DzO
|
SECURITY_INITIALLOGIN_PASSWORD=Jw9U039f5xc2mFcacvGvPD9RjwIh4DzO
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### OpenSSH
|
||||||
|
|
||||||
You can need to add/change the public ssh key [id_ed25519.pub](infrastructure/services/openssh/config/authorized_keys/id_ed25519.pub) (its my public key), also change the config/password in [openssh.env](infrastructure/services/openssh/env/openssh.env):
|
You can need to add/change the public ssh key [id_ed25519.pub](infrastructure/services/openssh/config/authorized_keys/id_ed25519.pub) (its my public key), also change the config/password in [openssh.env](infrastructure/services/openssh/env/openssh.env):
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -210,6 +255,16 @@ USER_PASSWORD=rdUwf36C11PLmpU9Lvq7tP5pfFBKAuCh
|
|||||||
#USER_PASSWORD_FILE=/path/to/file
|
#USER_PASSWORD_FILE=/path/to/file
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Open-WebUI
|
||||||
|
|
||||||
|
For [open-webui.env](infrastructure/services/open-webui/env/open-webui.env) file, entirely optional.
|
||||||
|
|
||||||
|
To download the model, you can use:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker exec -it ollama ollama run deepseek-r1:8b
|
||||||
|
```
|
||||||
|
|
||||||
### Start the infrastructure
|
### Start the infrastructure
|
||||||
|
|
||||||
Start the website with:
|
Start the website with:
|
||||||
@@ -232,7 +287,7 @@ make down
|
|||||||
|
|
||||||
You can disable some services by removing the service name in PROFILES variable in the [Makefile](Makefile) file.
|
You can disable some services by removing the service name in PROFILES variable in the [Makefile](Makefile) file.
|
||||||
|
|
||||||
To enable the gitea CI: https://medium.com/@lokanx/how-to-build-docker-containers-using-gitea-runners-600729555e07
|
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
|
||||||
|
|
||||||
@@ -243,14 +298,54 @@ You can change the homepage config in these files:
|
|||||||
- [settings.yaml](infrastructure/services/homepage/config/settings.yaml)
|
- [settings.yaml](infrastructure/services/homepage/config/settings.yaml)
|
||||||
- [widgets.yaml](infrastructure/services/homepage/config/widgets.yaml)
|
- [widgets.yaml](infrastructure/services/homepage/config/widgets.yaml)
|
||||||
|
|
||||||
|
### Forgejo
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker exec -it forgejo_runner /bin/bash
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
forgejo-runner generate-config > /data/config.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
Now update the config.yml file to support docker-in-docker:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
envs:
|
||||||
|
DOCKER_TLS_VERIFY: 1
|
||||||
|
DOCKER_CERT_PATH: /certs/client
|
||||||
|
DOCKER_HOST: tcp://docker:2376
|
||||||
|
labels: ["ubuntu-latest:docker://node:20-bookworm", "ubuntu-22.04:docker://node:20-bookworm"]
|
||||||
|
network: host
|
||||||
|
options: -v /certs/client:/certs/client
|
||||||
|
valid_volumes:
|
||||||
|
- /certs/client
|
||||||
|
```
|
||||||
|
|
||||||
|
Register the runner with your Forgejo instance:
|
||||||
|
|
||||||
|
|
||||||
|
```sh
|
||||||
|
forgejo-runner register
|
||||||
|
```
|
||||||
|
|
||||||
|
You will need to provide the following information:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
https://forgejo.bensuperpc.org/
|
||||||
|
<Your Registration Token, in https://forgejo.bensuperpc.org/admin/actions/runners>
|
||||||
|
ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|
||||||
|
main
|
||||||
|
```
|
||||||
|
|
||||||
### Docker volumes
|
### Docker volumes
|
||||||
|
|
||||||
This infrastructure uses docker volumes to store data, all configuration/data for each service are not shared between services for security and maintenance reasons, but **public_data** and **private_data** are shared between all services to store your data.
|
This infrastructure uses docker volumes to store data, all configuration/data for each service are not shared between services for security and maintenance reasons, but **public_data** and **private_data** are shared between all services to store your data.
|
||||||
|
|
||||||
| Volume name | Description |
|
| Volume name | Description |
|
||||||
| --- | --- |
|
| ------------ | ---------------------------------------------------------------------------------------------------------- |
|
||||||
| public_data | Public data reachable on internet via [dufs.bensuperpc.org](https://dufs.bensuperpc.org), can be disabled. |
|
| public_data | Public data reachable on internet via [dufs.bensuperpc.org](https://dufs.bensuperpc.org), can be disabled. |
|
||||||
| private_data | Private data |
|
| private_data | Private data |
|
||||||
|
|
||||||
### SSH access
|
### SSH access
|
||||||
|
|
||||||
@@ -285,6 +380,7 @@ ssh -p 2222 admin@bensuperpc.org
|
|||||||
- [SyncThing](https://syncthing.net/)
|
- [SyncThing](https://syncthing.net/)
|
||||||
- [PsiTransfer](https://psitransfer.com/)
|
- [PsiTransfer](https://psitransfer.com/)
|
||||||
- [It-tools](https://github.com/CorentinTh/it-tools)
|
- [It-tools](https://github.com/CorentinTh/it-tools)
|
||||||
|
- [Omni-tools](https://github.com/iib0011/omni-tools)
|
||||||
- [Privatebin](https://github.com/PrivateBin/PrivateBin)
|
- [Privatebin](https://github.com/PrivateBin/PrivateBin)
|
||||||
- [ghost](https://ghost.org)
|
- [ghost](https://ghost.org)
|
||||||
- [Homepage Tuto](https://belginux.com/installer-homepage-avec-docker/)
|
- [Homepage Tuto](https://belginux.com/installer-homepage-avec-docker/)
|
||||||
@@ -292,7 +388,12 @@ ssh -p 2222 admin@bensuperpc.org
|
|||||||
- [ProjectSend](https://www.projectsend.org/)
|
- [ProjectSend](https://www.projectsend.org/)
|
||||||
- [Picoshare](https://github.com/mtlynch/picoshare)
|
- [Picoshare](https://github.com/mtlynch/picoshare)
|
||||||
- [Dufs](https://github.com/sigoden/dufs)
|
- [Dufs](https://github.com/sigoden/dufs)
|
||||||
|
- [demos](https://github.com/usememos/memos)
|
||||||
|
- [Stirling PDF](https://github.com/Stirling-Tools/Stirling-PDF)
|
||||||
|
- [open-webui](https://github.com/open-webui/open-webui)
|
||||||
- [Fix docker volume](https://pratikpc.medium.com/use-docker-compose-named-volumes-as-non-root-within-your-containers-1911eb30f731)
|
- [Fix docker volume](https://pratikpc.medium.com/use-docker-compose-named-volumes-as-non-root-within-your-containers-1911eb30f731)
|
||||||
|
- [Forgejo-runner](https://code.forgejo.org/forgejo/runner)
|
||||||
|
- [Forgejo-runner](https://huijzer.xyz/posts/55)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
include:
|
include:
|
||||||
|
# Main
|
||||||
|
- services/main/docker-compose.main.yml
|
||||||
# WordPress
|
# WordPress
|
||||||
- services/wordpress/docker-compose.wordpress.yml
|
- services/wordpress/docker-compose.wordpress.yml
|
||||||
# Caddy
|
# Caddy
|
||||||
@@ -7,10 +9,14 @@ include:
|
|||||||
- services/dufs/docker-compose.dufs.yml
|
- services/dufs/docker-compose.dufs.yml
|
||||||
# Gitea
|
# Gitea
|
||||||
- services/gitea/docker-compose.gitea.yml
|
- services/gitea/docker-compose.gitea.yml
|
||||||
|
# Forgejo
|
||||||
|
- services/forgejo/docker-compose.forgejo.yml
|
||||||
# Homepage
|
# Homepage
|
||||||
- services/homepage/docker-compose.homepage.yml
|
- services/homepage/docker-compose.homepage.yml
|
||||||
# It-tools
|
# It-tools
|
||||||
- services/it-tools/docker-compose.it-tools.yml
|
- services/it-tools/docker-compose.it-tools.yml
|
||||||
|
# omni-tools
|
||||||
|
- services/omni-tools/docker-compose.omni-tools.yml
|
||||||
# Jellyfin
|
# Jellyfin
|
||||||
- services/jellyfin/docker-compose.jellyfin.yml
|
- services/jellyfin/docker-compose.jellyfin.yml
|
||||||
# Openssh
|
# Openssh
|
||||||
@@ -35,38 +41,11 @@ include:
|
|||||||
- services/uptime-kuma/docker-compose.uptime-kuma.yml
|
- services/uptime-kuma/docker-compose.uptime-kuma.yml
|
||||||
# Yacht
|
# Yacht
|
||||||
- services/yacht/docker-compose.yacht.yml
|
- services/yacht/docker-compose.yacht.yml
|
||||||
|
# open-webui
|
||||||
services:
|
- services/open-webui/docker-compose.open-webui.yml
|
||||||
main_infrastructure:
|
# Minecraft
|
||||||
container_name: main_infrastructure
|
- services/minecraft-server/minecraft-server/docker-compose.yml
|
||||||
image: alpine:latest
|
# 7daystodie
|
||||||
profiles:
|
- services/7daystodie-server/7daystodie-server/docker-compose.yml
|
||||||
- main_infrastructure
|
# Satisfactory
|
||||||
volumes:
|
- services/satisfactory-server/satisfactory-server/docker-compose.yml
|
||||||
- public_data:/public_data:rw
|
|
||||||
- private_data:/private_data:rw
|
|
||||||
read_only: true
|
|
||||||
security_opt:
|
|
||||||
- no-new-privileges:true
|
|
||||||
cap_drop:
|
|
||||||
- ALL
|
|
||||||
cap_add:
|
|
||||||
- CHOWN
|
|
||||||
- DAC_OVERRIDE
|
|
||||||
# Fix root permissions on mounted volumes
|
|
||||||
command: chown -R ${PUID:-1000}:${PGID:-1000} /public_data /private_data
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
public_data:
|
|
||||||
name: public_data
|
|
||||||
private_data:
|
|
||||||
name: private_data
|
|
||||||
|
|
||||||
networks:
|
|
||||||
infra-network:
|
|
||||||
driver: bridge
|
|
||||||
name: infra-network
|
|
||||||
intern-network:
|
|
||||||
driver: bridge
|
|
||||||
internal: true
|
|
||||||
name: intern-network
|
|
||||||
|
1
infrastructure/services/7daystodie-server
Submodule
1
infrastructure/services/7daystodie-server
Submodule
Submodule infrastructure/services/7daystodie-server added at 9e81da5eea
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
email bensuperpc@gmail.com
|
email {$MAIL_DOMAIN}
|
||||||
key_type p384
|
key_type p384
|
||||||
|
|
||||||
log {
|
log {
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
www.bensuperpc.org {
|
www.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy homepage:3000
|
reverse_proxy homepage:3000
|
||||||
}
|
}
|
||||||
|
|
||||||
bensuperpc.org {
|
{$MAIN_DOMAIN} {
|
||||||
redir https://www.{host}{uri} permanent
|
redir https://www.{host}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
homepage.bensuperpc.org {
|
homepage.{$MAIN_DOMAIN} {
|
||||||
redir https://www.bensuperpc.org{uri} permanent
|
redir https://www.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
public.bensuperpc.org {
|
public.{$MAIN_DOMAIN} {
|
||||||
root * /public_data
|
root * /public_data
|
||||||
file_server browse
|
file_server browse
|
||||||
}
|
}
|
||||||
|
|
||||||
wordpress.bensuperpc.org {
|
wordpress.{$MAIN_DOMAIN} {
|
||||||
root * /var/www/html
|
root * /var/www/html
|
||||||
php_fastcgi wordpress:9000
|
php_fastcgi wordpress:9000
|
||||||
|
|
||||||
@@ -46,11 +46,11 @@ wordpress.bensuperpc.org {
|
|||||||
# 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=() interest-cohort=()"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
it-tools.bensuperpc.org {
|
it-tools.{$MAIN_DOMAIN} {
|
||||||
# Load balance between 2 instances
|
# Load balance between 2 instances
|
||||||
reverse_proxy {
|
reverse_proxy {
|
||||||
to it-tools0:80 it-tools1:80
|
to it-tools0:80 it-tools1:80
|
||||||
@@ -60,81 +60,99 @@ it-tools.bensuperpc.org {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uptimekuma.bensuperpc.org {
|
omni-tools.{$MAIN_DOMAIN} {
|
||||||
|
# Load balance between 2 instances
|
||||||
|
reverse_proxy {
|
||||||
|
to omni-tools0:80 omni-tools1:80
|
||||||
|
lb_policy round_robin
|
||||||
|
lb_retries 3
|
||||||
|
lb_try_interval 1s
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uptimekuma.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy uptime-kuma:3001
|
reverse_proxy uptime-kuma:3001
|
||||||
}
|
}
|
||||||
|
|
||||||
torrent.bensuperpc.org {
|
torrent.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy qbittorrent:8080
|
reverse_proxy qbittorrent:8080
|
||||||
}
|
}
|
||||||
|
|
||||||
qbittorrent.bensuperpc.org {
|
qbittorrent.{$MAIN_DOMAIN} {
|
||||||
redir https://torrent.bensuperpc.org permanent
|
redir https://torrent.{$MAIN_DOMAIN} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
transmission.bensuperpc.org {
|
transmission.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy transmission:9091
|
reverse_proxy transmission:9091
|
||||||
}
|
}
|
||||||
|
|
||||||
gitea.bensuperpc.org {
|
gitea.{$MAIN_DOMAIN} {
|
||||||
redir https://git.bensuperpc.org permanent
|
|
||||||
}
|
|
||||||
|
|
||||||
git.bensuperpc.org {
|
|
||||||
reverse_proxy gitea:3000
|
reverse_proxy gitea:3000
|
||||||
}
|
}
|
||||||
|
|
||||||
jellyfin.bensuperpc.org {
|
git.{$MAIN_DOMAIN} {
|
||||||
|
reverse_proxy forgejo:3000
|
||||||
|
}
|
||||||
|
|
||||||
|
forgejo.{$MAIN_DOMAIN} {
|
||||||
|
redir https://git.{$MAIN_DOMAIN}{uri} permanent
|
||||||
|
}
|
||||||
|
|
||||||
|
jellyfin.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy jellyfin:8096
|
reverse_proxy jellyfin:8096
|
||||||
}
|
}
|
||||||
|
|
||||||
transfer.bensuperpc.org {
|
transfer.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy psitransfer:3000
|
reverse_proxy psitransfer:3000
|
||||||
}
|
}
|
||||||
|
|
||||||
psitransfer.bensuperpc.org {
|
psitransfer.{$MAIN_DOMAIN} {
|
||||||
redir https://transfer.bensuperpc.org{uri} permanent
|
redir https://transfer.{$MAIN_DOMAIN}{uri} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
picoshare.bensuperpc.org {
|
picoshare.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy picoshare:4001
|
reverse_proxy picoshare:4001
|
||||||
}
|
}
|
||||||
|
|
||||||
syncthing.bensuperpc.org {
|
syncthing.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy syncthing:8384 {
|
reverse_proxy syncthing:8384 {
|
||||||
header_up Host {upstream_hostport}
|
header_up Host {upstream_hostport}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tools.bensuperpc.org {
|
privatebin.{$MAIN_DOMAIN} {
|
||||||
redir https://it-tools.bensuperpc.org permanent
|
|
||||||
}
|
|
||||||
|
|
||||||
privatebin.bensuperpc.org {
|
|
||||||
reverse_proxy privatebin:8080
|
reverse_proxy privatebin:8080
|
||||||
}
|
}
|
||||||
|
|
||||||
pastebin.bensuperpc.org {
|
pastebin.{$MAIN_DOMAIN} {
|
||||||
redir https://privatebin.bensuperpc.org permanent
|
redir https://privatebin.{$MAIN_DOMAIN} permanent
|
||||||
}
|
}
|
||||||
|
|
||||||
yacht.bensuperpc.org {
|
yacht.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy yacht:8000
|
reverse_proxy yacht:8000
|
||||||
}
|
}
|
||||||
|
|
||||||
projectsend.bensuperpc.org {
|
projectsend.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy projectsend:80
|
reverse_proxy projectsend:80
|
||||||
}
|
}
|
||||||
|
|
||||||
dufs.bensuperpc.org {
|
dufs.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy dufs:5000
|
reverse_proxy dufs:5000
|
||||||
}
|
}
|
||||||
|
|
||||||
stirlingpdf.bensuperpc.org {
|
stirlingpdf.{$MAIN_DOMAIN} {
|
||||||
reverse_proxy stirlingpdf:8080
|
reverse_proxy stirlingpdf:8080
|
||||||
}
|
}
|
||||||
|
|
||||||
link.bensuperpc.org {
|
memos.{$MAIN_DOMAIN} {
|
||||||
|
reverse_proxy memos:5230
|
||||||
|
}
|
||||||
|
|
||||||
|
open-webui.{$MAIN_DOMAIN} {
|
||||||
|
reverse_proxy open-webui:8080
|
||||||
|
}
|
||||||
|
|
||||||
|
link.{$MAIN_DOMAIN} {
|
||||||
# TODO: Use service with database
|
# TODO: Use service with database
|
||||||
# Friendly links
|
# Friendly links
|
||||||
redir /gnous https://gnous.eu permanent
|
redir /gnous https://gnous.eu permanent
|
||||||
|
2
infrastructure/services/caddy/env/caddy.env
vendored
2
infrastructure/services/caddy/env/caddy.env
vendored
@@ -0,0 +1,2 @@
|
|||||||
|
MAIN_DOMAIN=bensuperpc.org
|
||||||
|
MAIL_DOMAIN=bensuperpc@gmail.com
|
||||||
|
95
infrastructure/services/forgejo/docker-compose.forgejo.yml
Normal file
95
infrastructure/services/forgejo/docker-compose.forgejo.yml
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
services:
|
||||||
|
# forgejo
|
||||||
|
forgejo:
|
||||||
|
image: codeberg.org/forgejo/forgejo:11-rootless
|
||||||
|
container_name: forgejo
|
||||||
|
profiles:
|
||||||
|
- forgejo
|
||||||
|
restart: on-failure:5
|
||||||
|
depends_on:
|
||||||
|
- database_forgejo
|
||||||
|
- caddy
|
||||||
|
ports:
|
||||||
|
- "22:22"
|
||||||
|
env_file:
|
||||||
|
- ./env/forgejo.env
|
||||||
|
volumes:
|
||||||
|
- forgejo_data:/var/lib/gitea
|
||||||
|
- forgejo_config:/etc/gitea
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
# Database forgejo
|
||||||
|
database_forgejo:
|
||||||
|
image: mariadb:latest
|
||||||
|
container_name: database_forgejo
|
||||||
|
profiles:
|
||||||
|
- forgejo
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
restart: on-failure:5
|
||||||
|
volumes:
|
||||||
|
- forgejo_db:/var/lib/mysql:rw
|
||||||
|
env_file:
|
||||||
|
- ./env/forgejo_db.env
|
||||||
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
# forgejo-runner
|
||||||
|
docker-in-docker:
|
||||||
|
image: code.forgejo.org/oci/docker:dind
|
||||||
|
container_name: 'docker_dind'
|
||||||
|
hostname: docker
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
profiles:
|
||||||
|
- forgejo
|
||||||
|
privileged: true
|
||||||
|
environment:
|
||||||
|
DOCKER_TLS_CERTDIR: /certs
|
||||||
|
DOCKER_HOST: docker-in-docker
|
||||||
|
volumes:
|
||||||
|
- forgejo_certs:/certs
|
||||||
|
|
||||||
|
forgejo_runner:
|
||||||
|
image: 'code.forgejo.org/forgejo/runner:6.3.1'
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
profiles:
|
||||||
|
- forgejo
|
||||||
|
links:
|
||||||
|
- docker-in-docker
|
||||||
|
depends_on:
|
||||||
|
docker-in-docker:
|
||||||
|
condition: service_started
|
||||||
|
container_name: 'forgejo_runner'
|
||||||
|
env_file:
|
||||||
|
- ./env/forgejo_runner.env
|
||||||
|
# user: 1001:1001
|
||||||
|
volumes:
|
||||||
|
# - ./config/forgejo_runner/config.yaml:/config.yaml:ro
|
||||||
|
- forgejo_runner:/data
|
||||||
|
- forgejo_certs:/certs
|
||||||
|
restart: 'unless-stopped'
|
||||||
|
|
||||||
|
# command: '/bin/sh -c "while : ; do sleep 1 ; done ;"'
|
||||||
|
command: '/bin/sh -c "sleep 5; forgejo-runner -c /data/config.yml daemon"'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
forgejo_data:
|
||||||
|
name: forgejo_data
|
||||||
|
forgejo_config:
|
||||||
|
name: forgejo_config
|
||||||
|
forgejo_db:
|
||||||
|
name: forgejo_db
|
||||||
|
forgejo_certs:
|
||||||
|
name: forgejo_certs
|
||||||
|
forgejo_runner:
|
||||||
|
name: forgejo_runner
|
25
infrastructure/services/forgejo/env/forgejo.env
vendored
Normal file
25
infrastructure/services/forgejo/env/forgejo.env
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
USER_UID=1000
|
||||||
|
USER_GID=1000
|
||||||
|
FORGEJO__database__DB_TYPE=mysql
|
||||||
|
FORGEJO__database__HOST=database_forgejo:3306
|
||||||
|
FORGEJO__database__NAME=forgejo
|
||||||
|
FORGEJO__database__USER=bensuperpc
|
||||||
|
FORGEJO__database__PASSWD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
|
||||||
|
FORGEJO__APP_NAME=The Homelab Git
|
||||||
|
FORGEJO__APP_SLOGAN=Personal Code, Mirrors, and More
|
||||||
|
FORGEJO__server__DOMAIN=git.bensuperpc.org
|
||||||
|
FORGEJO__server__SSH_DOMAIN=git.bensuperpc.org
|
||||||
|
FORGEJO__server__HTTP_PORT=3000
|
||||||
|
FORGEJO__server__SSH_LISTEN_PORT=22
|
||||||
|
FORGEJO__server__SSH_PORT=22
|
||||||
|
FORGEJO__server__ROOT_URL=https://git.bensuperpc.org
|
||||||
|
FORGEJO__security__SECRET_KEY=ykcZt23an1E4lFHWvrCKdAyt16WAiK9c
|
||||||
|
#FORGEJO__security__INTERNAL_TOKEN=
|
||||||
|
#FORGEJO__security__INSTALL_LOCK=true
|
||||||
|
FORGEJO__security__MIN_PASSWORD_LENGTH=8
|
||||||
|
FORGEJO__actions__ENABLED=true
|
||||||
|
FORGEJO__actions__DEFAULT_ACTIONS_URL="https://git.bensuperpc.org"
|
||||||
|
#FORGEJO__log__LEVEL: "debug"
|
||||||
|
FORGEJO__repository__ENABLE_PUSH_CREATE_USER=true
|
||||||
|
FORGEJO__repository__DEFAULT_PUSH_CREATE_PRIVATE=false
|
||||||
|
FORGEJO__repository__DEFAULT_REPO_UNITS=repo.code,repo.actions
|
4
infrastructure/services/forgejo/env/forgejo_db.env
vendored
Normal file
4
infrastructure/services/forgejo/env/forgejo_db.env
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
MARIADB_ROOT_PASSWORD=xpc4zIhHZzWKqVHcjBu4aW6aS7jG8d7X
|
||||||
|
MARIADB_USER=bensuperpc
|
||||||
|
MARIADB_PASSWORD=K7s5yoHknnEd7vsZoxb8I3dK9mjToF1j
|
||||||
|
MARIADB_DATABASE=forgejo
|
3
infrastructure/services/forgejo/env/forgejo_runner.env
vendored
Normal file
3
infrastructure/services/forgejo/env/forgejo_runner.env
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
DOCKER_HOST=tcp://docker:2376
|
||||||
|
DOCKER_CERT_PATH=/certs/client
|
||||||
|
DOCKER_TLS_VERIFY=1
|
@@ -10,14 +10,14 @@ services:
|
|||||||
- database_gitea
|
- database_gitea
|
||||||
- caddy
|
- caddy
|
||||||
ports:
|
ports:
|
||||||
- "22:22"
|
- "5555:5555"
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/gitea.env
|
- ./env/gitea.env
|
||||||
volumes:
|
volumes:
|
||||||
- gitea_data:/var/lib/gitea
|
- gitea_data:/var/lib/gitea
|
||||||
- gitea_config:/etc/gitea
|
- gitea_config:/etc/gitea
|
||||||
# - /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
# - /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
networks:
|
networks:
|
||||||
- infra-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
@@ -28,7 +28,6 @@ services:
|
|||||||
image: mariadb:latest
|
image: mariadb:latest
|
||||||
container_name: database_gitea
|
container_name: database_gitea
|
||||||
profiles:
|
profiles:
|
||||||
- database
|
|
||||||
- gitea
|
- gitea
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
|
4
infrastructure/services/gitea/env/gitea.env
vendored
4
infrastructure/services/gitea/env/gitea.env
vendored
@@ -10,6 +10,6 @@ GITEA__security__SECRET_KEY=ykcZt23an1E4lFHWvrCKdAyt16WAiK9c
|
|||||||
GITEA__server__DOMAIN=git.bensuperpc.org
|
GITEA__server__DOMAIN=git.bensuperpc.org
|
||||||
GITEA__server__SSH_DOMAIN=git.bensuperpc.org
|
GITEA__server__SSH_DOMAIN=git.bensuperpc.org
|
||||||
GITEA__server__HTTP_PORT=3000
|
GITEA__server__HTTP_PORT=3000
|
||||||
GITEA__server__SSH_LISTEN_PORT=22
|
GITEA__server__SSH_LISTEN_PORT=5555
|
||||||
GITEA__server__SSH_PORT=22
|
GITEA__server__SSH_PORT=5555
|
||||||
GITEA__server__ROOT_URL=https://git.bensuperpc.org
|
GITEA__server__ROOT_URL=https://git.bensuperpc.org
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/latest/configs/bookmarks
|
# https://gethomepage.dev/configs/bookmarks
|
||||||
|
|
||||||
- Developer:
|
- Developer:
|
||||||
- Github:
|
- Github:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/latest/configs/docker/
|
# https://gethomepage.dev/configs/docker
|
||||||
|
|
||||||
#jellyfin:
|
#jellyfin:
|
||||||
# host: jellyfin
|
# host: jellyfin
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/latest/configs/services
|
# https://gethomepage.dev/configs/services/
|
||||||
|
|
||||||
- Personal:
|
- Personal:
|
||||||
- wordpress:
|
- wordpress:
|
||||||
@@ -78,6 +78,12 @@
|
|||||||
description: IT Tools
|
description: IT Tools
|
||||||
ping: it-tools.bensuperpc.org
|
ping: it-tools.bensuperpc.org
|
||||||
container: it-tools0
|
container: it-tools0
|
||||||
|
- omni-tools:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/it-tools.png
|
||||||
|
href: https://omni-tools.bensuperpc.org/
|
||||||
|
description: Omni Tools
|
||||||
|
ping: omni-tools.bensuperpc.org
|
||||||
|
container: omni-tools0
|
||||||
- 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/
|
||||||
@@ -90,6 +96,38 @@
|
|||||||
description: Gitea
|
description: Gitea
|
||||||
ping: gitea.bensuperpc.org
|
ping: gitea.bensuperpc.org
|
||||||
container: gitea
|
container: gitea
|
||||||
|
- forgejo:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/forgejo.png
|
||||||
|
href: https://forgejo.bensuperpc.org/
|
||||||
|
description: Forgejo
|
||||||
|
ping: forgejo.bensuperpc.org
|
||||||
|
container: forgejo
|
||||||
|
- open-webui:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/open-webui.png
|
||||||
|
href: https://open-webui.bensuperpc.org/
|
||||||
|
description: ChatGPT local
|
||||||
|
ping: open-webui.bensuperpc.org
|
||||||
|
container: open-webui
|
||||||
|
|
||||||
|
- Games:
|
||||||
|
- minecraft:
|
||||||
|
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/minecraft.png
|
||||||
|
# href: https://minecraft.bensuperpc.org/
|
||||||
|
description: Minecraft server
|
||||||
|
# ping: minecraft.bensuperpc.org
|
||||||
|
container: minecraft-server
|
||||||
|
- 7dtd:
|
||||||
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
||||||
|
# href: https://7dtd.bensuperpc.org/
|
||||||
|
description: 7 Days to Die server
|
||||||
|
# ping: 7dtd.bensuperpc.org
|
||||||
|
container: 7daystodie_server
|
||||||
|
- satisfactory:
|
||||||
|
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
||||||
|
# href: https://7dtd.bensuperpc.org/
|
||||||
|
description: Satisfactory server
|
||||||
|
# ping: 7dtd.bensuperpc.org
|
||||||
|
container: satisfactory_server
|
||||||
|
|
||||||
- Admin:
|
- Admin:
|
||||||
- uptime-kuma:
|
- uptime-kuma:
|
||||||
@@ -105,23 +143,3 @@
|
|||||||
ping: yacht.bensuperpc.org
|
ping: yacht.bensuperpc.org
|
||||||
container: yacht
|
container: yacht
|
||||||
|
|
||||||
- Games:
|
|
||||||
- minecraft:
|
|
||||||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/minecraft.png
|
|
||||||
# href: https://minecraft.bensuperpc.org/
|
|
||||||
description: Minecraft server
|
|
||||||
# ping: minecraft.bensuperpc.org
|
|
||||||
container: minecraft-server
|
|
||||||
- 7dtd:
|
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
|
||||||
# href: https://7dtd.bensuperpc.org/
|
|
||||||
description: 7 Days to Die server
|
|
||||||
# ping: 7dtd.bensuperpc.org
|
|
||||||
container: 7dtd-server
|
|
||||||
- satisfactory:
|
|
||||||
# icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/7dtd.png
|
|
||||||
# href: https://7dtd.bensuperpc.org/
|
|
||||||
description: Satisfactory server
|
|
||||||
# ping: 7dtd.bensuperpc.org
|
|
||||||
container: satisfactory-server
|
|
||||||
|
|
||||||
|
@@ -1,9 +1,11 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/latest/configs/settings
|
# https://gethomepage.dev/configs/settings/
|
||||||
|
|
||||||
title: Bensuperpc
|
title: Bensuperpc
|
||||||
|
|
||||||
|
description: Bensuperpc's homepage
|
||||||
|
|
||||||
base: https://www.bensuperpc.org
|
base: https://www.bensuperpc.org
|
||||||
|
|
||||||
favicon: /image/favicon.ico
|
favicon: /image/favicon.ico
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
# For configuration options and examples, please see:
|
# For configuration options and examples, please see:
|
||||||
# https://gethomepage.dev/latest/configs/service-widgets
|
# https://gethomepage.dev/widgets/services/
|
||||||
# https://gethomepage.dev/main/widgets/services/qbittorrent
|
# https://gethomepage.dev/widgets/services/qbittorrent/
|
||||||
|
|
||||||
#- logo:
|
#- logo:
|
||||||
# icon: /image/daisy.jpg
|
# icon: /image/daisy.jpg
|
||||||
|
@@ -6,6 +6,9 @@ services:
|
|||||||
profiles:
|
profiles:
|
||||||
- homepage
|
- homepage
|
||||||
restart: on-failure:5
|
restart: on-failure:5
|
||||||
|
# environment:
|
||||||
|
# - PUID=${PUID:-1000}
|
||||||
|
# - PGID=${PGID:-1000}
|
||||||
depends_on:
|
depends_on:
|
||||||
- caddy
|
- caddy
|
||||||
env_file:
|
env_file:
|
||||||
|
@@ -1,2 +1,3 @@
|
|||||||
PSITRANSFER_ADMIN_PASS=n9jLVNT9QUotTJTT91JqH4GyBTg9pvEn
|
PSITRANSFER_ADMIN_PASS=n9jLVNT9QUotTJTT91JqH4GyBTg9pvEn
|
||||||
#PSITRANSFER_PORT=3000
|
#PSITRANSFER_PORT=3000
|
||||||
|
HOMEPAGE_ALLOWED_HOSTS=www.bensuperpc.org
|
||||||
|
34
infrastructure/services/main/docker-compose.main.yml
Normal file
34
infrastructure/services/main/docker-compose.main.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
services:
|
||||||
|
main_infrastructure:
|
||||||
|
container_name: main_infrastructure
|
||||||
|
image: alpine:latest
|
||||||
|
profiles:
|
||||||
|
- main_infrastructure
|
||||||
|
volumes:
|
||||||
|
- public_data:/public_data:rw
|
||||||
|
- private_data:/private_data:rw
|
||||||
|
read_only: true
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
cap_drop:
|
||||||
|
- ALL
|
||||||
|
cap_add:
|
||||||
|
- CHOWN
|
||||||
|
- DAC_OVERRIDE
|
||||||
|
# Fix root permissions on mounted volumes
|
||||||
|
command: chown -R ${PUID:-1000}:${PGID:-1000} /public_data /private_data
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
public_data:
|
||||||
|
name: public_data
|
||||||
|
private_data:
|
||||||
|
name: private_data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
infra-network:
|
||||||
|
driver: bridge
|
||||||
|
name: infra-network
|
||||||
|
intern-network:
|
||||||
|
driver: bridge
|
||||||
|
internal: true
|
||||||
|
name: intern-network
|
22
infrastructure/services/memos/docker-compose.memos.yml
Normal file
22
infrastructure/services/memos/docker-compose.memos.yml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
services:
|
||||||
|
# memos
|
||||||
|
memos:
|
||||||
|
image: neosmemo/memos:latest
|
||||||
|
container_name: memos
|
||||||
|
profiles:
|
||||||
|
- memos
|
||||||
|
restart: on-failure:5
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
env_file:
|
||||||
|
- ./env/memos.env
|
||||||
|
volumes:
|
||||||
|
- memos_config:/var/opt/memos
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
memos_config:
|
||||||
|
name: memos_config
|
1
infrastructure/services/memos/env/memos.env
vendored
Normal file
1
infrastructure/services/memos/env/memos.env
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
1
infrastructure/services/minecraft-server
Submodule
1
infrastructure/services/minecraft-server
Submodule
Submodule infrastructure/services/minecraft-server added at 94be77f9a7
@@ -0,0 +1,51 @@
|
|||||||
|
services:
|
||||||
|
# omni-tools
|
||||||
|
omni-tools0:
|
||||||
|
image: iib0011/omni-tools:latest
|
||||||
|
container_name: omni-tools0
|
||||||
|
profiles:
|
||||||
|
- omni-tools
|
||||||
|
restart: on-failure:5
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
read_only: false
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
cap_drop:
|
||||||
|
- SYS_ADMIN
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpus: '0.5'
|
||||||
|
memory: 512M
|
||||||
|
reservations:
|
||||||
|
cpus: '0.001'
|
||||||
|
memory: 20M
|
||||||
|
|
||||||
|
omni-tools1:
|
||||||
|
image: iib0011/omni-tools:latest
|
||||||
|
container_name: omni-tools1
|
||||||
|
profiles:
|
||||||
|
- omni-tools
|
||||||
|
restart: on-failure:5
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
read_only: false
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
cap_drop:
|
||||||
|
- SYS_ADMIN
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpus: '0.5'
|
||||||
|
memory: 512M
|
||||||
|
reservations:
|
||||||
|
cpus: '0.001'
|
||||||
|
memory: 20M
|
@@ -0,0 +1,42 @@
|
|||||||
|
services:
|
||||||
|
ollama:
|
||||||
|
image: ollama/ollama:latest
|
||||||
|
#platform: linux/amd64
|
||||||
|
container_name: ollama
|
||||||
|
profiles:
|
||||||
|
- open-webui
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
restart: on-failure:5
|
||||||
|
tty: true
|
||||||
|
volumes:
|
||||||
|
- ollama:/root/.ollama
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
|
||||||
|
open-webui:
|
||||||
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
|
container_name: open-webui
|
||||||
|
profiles:
|
||||||
|
- open-webui
|
||||||
|
volumes:
|
||||||
|
- open-webui:/app/backend/data
|
||||||
|
depends_on:
|
||||||
|
- ollama
|
||||||
|
- caddy
|
||||||
|
env_file:
|
||||||
|
- ./env/open-webui.env
|
||||||
|
#environment:
|
||||||
|
# - UID=${PUID:-1000}
|
||||||
|
# - GID=${PGID:-1000}
|
||||||
|
restart: on-failure:5
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
security_opt:
|
||||||
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
ollama: {}
|
||||||
|
open-webui: {}
|
16
infrastructure/services/open-webui/env/open-webui.env
vendored
Normal file
16
infrastructure/services/open-webui/env/open-webui.env
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
OLLAMA_BASE_URL=http://ollama:11434
|
||||||
|
#WEBUI_SECRET_KEY=
|
||||||
|
#HF_HUB_OFFLINE=1
|
||||||
|
# Disable analytics
|
||||||
|
SCARF_NO_ANALYTICS=true
|
||||||
|
DO_NOT_TRACK=true
|
||||||
|
ANONYMIZED_TELEMETRY=false
|
||||||
|
|
||||||
|
#OPENAI_API_BASE_URL=
|
||||||
|
#OPENAI_API_KEY=
|
||||||
|
|
||||||
|
# Only with stable-diffusion-webui
|
||||||
|
#ENABLE_IMAGE_GENERATION=true
|
||||||
|
#AUTOMATIC1111_BASE_URL=http://stable-diffusion-webui:7860
|
||||||
|
#IMAGE_SIZE=64x64
|
||||||
|
#IMAGE_STEPS=3
|
@@ -5,8 +5,6 @@ services:
|
|||||||
container_name: openssh
|
container_name: openssh
|
||||||
profiles:
|
profiles:
|
||||||
- openssh
|
- openssh
|
||||||
depends_on:
|
|
||||||
- caddy
|
|
||||||
restart: on-failure:5
|
restart: on-failure:5
|
||||||
env_file:
|
env_file:
|
||||||
- ./env/openssh.env
|
- ./env/openssh.env
|
||||||
@@ -21,6 +19,24 @@ services:
|
|||||||
- caddy_data:/caddy_data:rw
|
- caddy_data:/caddy_data:rw
|
||||||
- caddy_config:/caddy_config:rw
|
- caddy_config:/caddy_config:rw
|
||||||
- caddy_backup:/caddy_backup:rw
|
- caddy_backup:/caddy_backup:rw
|
||||||
|
- 7daystodie_backup:/7daystodie_backup:rw
|
||||||
|
- 7daystodie_server_save:/7daystodie_server_save:rw
|
||||||
|
- 7daystodie_server_config_lgsm:/7daystodie_server_config_lgsm:rw
|
||||||
|
- 7daystodie_server_file:/7daystodie_server_file:rw
|
||||||
|
- 7daystodie_server_log:/7daystodie_server_log:rw
|
||||||
|
- satisfactory_backup:/satisfactory_backup:rw
|
||||||
|
- satisfactory_server_config:/satisfactory_server_config:rw
|
||||||
|
- minecraft_server_backup:/minecraft_server_backup:rw
|
||||||
|
- minecraft_server_data:/minecraft_server_data:rw
|
||||||
|
- minecraft_proxy_data:/minecraft_proxy_data:rw
|
||||||
|
- minecraft_rcon_data:/minecraft_rcon_data:rw
|
||||||
|
- forgejo_data:/forgejo_data:rw
|
||||||
|
- forgejo_config:/forgejo_config:rw
|
||||||
|
- forgejo_db:/forgejo_db:rw
|
||||||
|
- gitea_data:/gitea_data:rw
|
||||||
|
- gitea_config:/gitea_config:rw
|
||||||
|
- gitea_db:/gitea_db:rw
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
- infra-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
@@ -40,3 +56,42 @@ volumes:
|
|||||||
name: caddy_config
|
name: caddy_config
|
||||||
caddy_backup:
|
caddy_backup:
|
||||||
name: caddy_backup
|
name: caddy_backup
|
||||||
|
# 7daystodie-server
|
||||||
|
7daystodie_backup:
|
||||||
|
name: 7daystodie_backup
|
||||||
|
7daystodie_server_save:
|
||||||
|
name: 7daystodie_server_save
|
||||||
|
7daystodie_server_config_lgsm:
|
||||||
|
name: 7daystodie_server_config_lgsm
|
||||||
|
7daystodie_server_file:
|
||||||
|
name: 7daystodie_server_file
|
||||||
|
7daystodie_server_log:
|
||||||
|
name: 7daystodie_server_log
|
||||||
|
# satisfactory-server
|
||||||
|
satisfactory_backup:
|
||||||
|
name: satisfactory_backup
|
||||||
|
satisfactory_server_config:
|
||||||
|
name: satisfactory_server_config
|
||||||
|
# minecraft-server
|
||||||
|
minecraft_server_backup:
|
||||||
|
name: minecraft_server_backup
|
||||||
|
minecraft_server_data:
|
||||||
|
name: minecraft_server_data
|
||||||
|
minecraft_proxy_data:
|
||||||
|
name: minecraft_proxy_data
|
||||||
|
minecraft_rcon_data:
|
||||||
|
name: minecraft_rcon_data
|
||||||
|
# forgejo
|
||||||
|
forgejo_data:
|
||||||
|
name: forgejo_data
|
||||||
|
forgejo_config:
|
||||||
|
name: forgejo_config
|
||||||
|
forgejo_db:
|
||||||
|
name: forgejo_db
|
||||||
|
# gitea
|
||||||
|
gitea_data:
|
||||||
|
name: gitea_data
|
||||||
|
gitea_config:
|
||||||
|
name: gitea_config
|
||||||
|
gitea_db:
|
||||||
|
name: gitea_db
|
1
infrastructure/services/satisfactory-server
Submodule
1
infrastructure/services/satisfactory-server
Submodule
Submodule infrastructure/services/satisfactory-server added at 768031f471
@@ -1,42 +1,42 @@
|
|||||||
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" version="24.7.14">
|
<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">
|
||||||
<diagram name="Page-1" id="c7558073-3199-34d8-9f00-42111426c3f3">
|
<diagram name="Page-1" id="c7558073-3199-34d8-9f00-42111426c3f3">
|
||||||
<mxGraphModel dx="1536" dy="816" 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="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">
|
||||||
<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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-98">
|
<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">
|
||||||
<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=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-139">
|
<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">
|
||||||
<mxGeometry x="0.212" y="-1" relative="1" as="geometry">
|
<mxGeometry x="0.212" y="-1" relative="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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-137">
|
<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">
|
||||||
<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=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-140">
|
<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">
|
||||||
<mxGeometry x="-0.0311" y="3" relative="1" as="geometry">
|
<mxGeometry x="-0.0311" y="3" relative="1" 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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-136">
|
<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">
|
||||||
<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=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-141">
|
<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">
|
||||||
<mxGeometry x="-0.0455" y="-1" relative="1" as="geometry">
|
<mxGeometry x="-0.0455" y="-1" relative="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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-138">
|
<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">
|
||||||
<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=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-143">
|
<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">
|
||||||
<mxGeometry x="0.0792" relative="1" as="geometry">
|
<mxGeometry x="0.0792" relative="1" 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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-125">
|
<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">
|
||||||
<mxGeometry relative="1" as="geometry">
|
<mxGeometry relative="1" as="geometry">
|
||||||
<mxPoint x="230" y="470" as="targetPoint" />
|
<mxPoint x="230" y="470" as="targetPoint" />
|
||||||
<Array as="points">
|
<Array as="points">
|
||||||
@@ -46,15 +46,15 @@
|
|||||||
</Array>
|
</Array>
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
</mxCell>
|
</mxCell>
|
||||||
<mxCell id="wsmfsViyqE6_RoJ9hA4X-150" value="2222" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-145">
|
<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">
|
||||||
<mxGeometry x="-0.0442" y="-1" relative="1" as="geometry">
|
<mxGeometry x="-0.0442" y="-1" relative="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;" edge="1" parent="1" source="3" target="wsmfsViyqE6_RoJ9hA4X-115">
|
<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">
|
||||||
<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=[];" vertex="1" connectable="0" parent="wsmfsViyqE6_RoJ9hA4X-147">
|
<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">
|
||||||
<mxGeometry x="0.3731" y="-3" relative="1" as="geometry">
|
<mxGeometry x="0.3731" y="-3" relative="1" as="geometry">
|
||||||
<mxPoint as="offset" />
|
<mxPoint as="offset" />
|
||||||
</mxGeometry>
|
</mxGeometry>
|
||||||
@@ -62,10 +62,10 @@
|
|||||||
<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" value="bensuperpc.org" style="whiteSpace=wrap;align=center;verticalAlign=middle;fontStyle=1;strokeWidth=3;fillColor=#dae8fc;strokeColor=#6c8ebf;fontSize=11;" parent="1" vertex="1">
|
||||||
<mxGeometry x="19" y="354" width="90" height="60" as="geometry" />
|
<mxGeometry x="19" y="354" width="90" height="60" 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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-115">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-125">
|
<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">
|
||||||
<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,97 +74,100 @@
|
|||||||
</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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-102">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-129">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-114">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-131">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-107">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-130">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-108">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-132">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-126">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-133">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-127">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-128">
|
<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">
|
||||||
<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;" edge="1" parent="1" source="wsmfsViyqE6_RoJ9hA4X-98" target="wsmfsViyqE6_RoJ9hA4X-134">
|
<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">
|
||||||
<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;" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="270" y="339" width="890" height="90" as="geometry" />
|
<mxGeometry x="270" y="339" width="890" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="270" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="270" y="180" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="530" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="530" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="660" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="660" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="400" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="400" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="140" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="140" y="180" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="270" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="270" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="790" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="790" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="920" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="920" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="1050" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="1050" y="500" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="400" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="400" y="180" width="110" height="90" as="geometry" />
|
||||||
</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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="660" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="660" y="180" width="110" height="90" as="geometry" />
|
||||||
</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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="530" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="530" y="180" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="790" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="790" y="180" width="110" height="90" 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" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="920" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="920" y="180" width="110" height="90" 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;" vertex="1" parent="1">
|
<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">
|
||||||
|
<mxGeometry x="1050" y="180" width="110" height="90" as="geometry" />
|
||||||
|
</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">
|
||||||
<mxGeometry x="9" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="9" y="500" width="110" height="90" 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;" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="9" y="180" width="110" height="90" as="geometry" />
|
<mxGeometry x="9" y="180" width="110" height="90" 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;" vertex="1" parent="1">
|
<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">
|
||||||
<mxGeometry x="140" y="500" width="110" height="90" as="geometry" />
|
<mxGeometry x="140" y="500" width="110" height="90" as="geometry" />
|
||||||
</mxCell>
|
</mxCell>
|
||||||
</root>
|
</root>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 338 KiB After Width: | Height: | Size: 293 KiB |
75
tools/docker_volumes_export.sh
Executable file
75
tools/docker_volumes_export.sh
Executable file
@@ -0,0 +1,75 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
volumes=(
|
||||||
|
7daystodie_backup
|
||||||
|
7daystodie_server_save
|
||||||
|
7daystodie_server_config_lgsm
|
||||||
|
7daystodie_server_log
|
||||||
|
# 7daystodie_server_file
|
||||||
|
# satisfactory_server_config
|
||||||
|
forgejo_data
|
||||||
|
wordpress_db
|
||||||
|
minecraft_proxy_data
|
||||||
|
stirlingpdf_tessdata
|
||||||
|
wordpress
|
||||||
|
gitea_db
|
||||||
|
# wordpress_backup
|
||||||
|
projectsend_share
|
||||||
|
transmission_config
|
||||||
|
# public_data
|
||||||
|
projectsend_db
|
||||||
|
projectsend_config
|
||||||
|
open-webui
|
||||||
|
minecraft_rcon_data
|
||||||
|
jellyfin_cache
|
||||||
|
caddy_backup
|
||||||
|
# satisfactory_backup
|
||||||
|
homepage_log
|
||||||
|
syncthing_config
|
||||||
|
openssh_config
|
||||||
|
minecraft_server_backup
|
||||||
|
qbittorrent_config
|
||||||
|
gitea_runner
|
||||||
|
gitea_config
|
||||||
|
minecraft_server_data
|
||||||
|
ollama
|
||||||
|
caddy_data
|
||||||
|
forgejo_config
|
||||||
|
stirlingpdf_config
|
||||||
|
uptimekuma_data
|
||||||
|
# private_data
|
||||||
|
yacht_config
|
||||||
|
transmission_watch
|
||||||
|
forgejo_db
|
||||||
|
privatebin_data
|
||||||
|
caddy_config
|
||||||
|
psitransfer_data
|
||||||
|
forgejo_certs
|
||||||
|
forgejo_runner
|
||||||
|
gitea_data
|
||||||
|
jellyfin_config
|
||||||
|
picoshare_data
|
||||||
|
)
|
||||||
|
|
||||||
|
export_volume() {
|
||||||
|
local volume="$1"
|
||||||
|
echo "Exporting volume: $volume to $(pwd)/$volume.tar.gz"
|
||||||
|
docker run --rm -v "$volume:/source" -v "$(pwd):/dest" alpine sh -c 'apk add --no-cache tar && tar --numeric-owner -cpvzf /dest/"$0.tar.gz" -C /source .' "$volume"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
import_volume() {
|
||||||
|
local volume="$1"
|
||||||
|
echo "Importing volume: $volume from $(pwd)/$volume.tar.gz"
|
||||||
|
docker run --rm -v "$volume:/dest" -v "$(pwd):/source" alpine sh -c 'apk add --no-cache tar && tar --numeric-owner -xpvzf /source/"$0.tar.gz" -C /dest' "$volume"
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Starting sync process..."
|
||||||
|
|
||||||
|
for ((i=0; i < ${#volumes[@]}; i++)); do
|
||||||
|
export_volume "${volumes[$i]}"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Sync process completed."
|
13
tools/sync_data.sh
Executable file
13
tools/sync_data.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
if [ "$#" -ne 2 ]; then
|
||||||
|
echo "Usage: $0 <source> <destination>"
|
||||||
|
echo "Example: $0 admin@192.168.1.2:/mydata/backup /local/backup"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
SOURCE="${1}"
|
||||||
|
DEST="${2}"
|
||||||
|
|
||||||
|
rsync -e 'ssh -p 2222' --progress --human-readable --archive --verbose --compress --acls --xattrs --bwlimit=30000 --stats --delete-during "${SOURCE}" "${DEST}"
|
Reference in New Issue
Block a user