this repo has no description

:sparkles: Updated configurations

- caddyfile
- storage data using external hd instead of local machine
- glance startpage and local

Changed files
+12 -25
caddy
glance
paisa
soft-serve
stump
+4 -10
caddy/Caddyfile
··· 10 10 reverse_proxy stump:10801 11 11 } 12 12 13 - grafana.tulkdan.dev { 14 - import cloudflare 15 - 16 - reverse_proxy monitoring-grafana:3000 17 - } 18 - 19 13 glance.tulkdan.dev { 20 14 import cloudflare 21 15 ··· 28 22 reverse_proxy soft-serve:23232 29 23 } 30 24 31 - wakapi.tulkdan.dev { 25 + paisa.tulkdan.dev { 32 26 import cloudflare 33 27 34 - reverse_proxy wakapi:3000 28 + reverse_proxy paisa:7500 35 29 } 36 30 37 - paisa.tulkdan.dev { 31 + adguard.tulkdan.dev { 38 32 import cloudflare 39 33 40 - reverse_proxy paisa:7500 34 + reverse_proxy 192.168.0.13:150 41 35 } 42 36 43 37 *.tulkdan.dev {
+1 -1
caddy/docker-compose.yml
··· 12 12 - proxy-network 13 13 volumes: 14 14 - ./Caddyfile:/etc/caddy/Caddyfile 15 - - ./data:/data 15 + - /external-hd-backup/caddy/data:/data 16 16 - ./config:/config 17 17 - /var/run/docker.sock:/var/run/docker.sock 18 18 labels:
+1 -1
glance/glances/local.yml
··· 9 9 widgets: 10 10 - type: dns-stats 11 11 service: adguard 12 - url: http://192.168.0.13:150 12 + url: https://adguard.tulkdan.dev 13 13 username: tulkdan 14 14 password: 15 15
+3 -6
glance/glances/startpage.yml
··· 21 21 - title: Stump 22 22 url: https://stump.tulkdan.dev 23 23 icon: si:bookstack 24 - - title: Wakatime 25 - url: https://wakapi.tulkdan.dev 26 - icon: si:wakatime 27 - - title: Grafana 28 - url: https://grafana.tulkdan.dev 29 - icon: si:grafana 30 24 - title: Paisa 31 25 url: https://paisa.tulkdan.dev 26 + - title: AdGuard 27 + url: https://adguard.tulkdan.dev 28 + icon: si:adguard 32 29 33 30 - type: markets 34 31 markets:
+1 -1
paisa/docker-compose.yml
··· 4 4 container_name: paisa 5 5 restart: unless-stopped 6 6 volumes: 7 - - ./data/:/root/Documents/paisa/ 7 + - /external-hd-backup/paisa/data/:/root/Documents/paisa/ 8 8 labels: 9 9 glance.name: Paisa 10 10 glance.url: https://paisa.tulkdan.dev
+1 -1
soft-serve/docker-compose.yml
··· 3 3 image: charmcli/soft-serve:latest 4 4 container_name: soft-serve 5 5 volumes: 6 - - ./data:/soft-serve 6 + - /external-hd-backup/soft-serve/data:/soft-serve 7 7 ports: 8 8 - 23231:23231 9 9 - 9418:9418
+1 -5
stump/docker-compose.yml
··· 2 2 stump: 3 3 image: aaronleopold/stump:latest 4 4 container_name: stump 5 - # Replace my paths (prior to the colons) with your own 6 5 volumes: 7 6 - /home/pedro-correa/.stump:/config 8 - - /media/books:/data 7 + - /external-hd-backup/stump/books:/data 9 8 environment: 10 9 - PUID=1000 11 10 - PGID=1000 12 - # This `environment` field is optional, remove if you don't need it. 13 - # I am using it as an example here, but it's actually a default value. 14 - - STUMP_CONFIG_DIR=/config 15 11 restart: unless-stopped 16 12 networks: 17 13 - stump-network