From 153c4d6b623928891059135ecc7309de5cf6b4e3 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Wed, 18 Jun 2025 15:44:55 -0400 Subject: [PATCH 1/3] Update Tailscale service configuration: modify TS_EXTRA_ARGS to advertise a broader route range. --- tailscale-subnet-router/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailscale-subnet-router/compose.yaml b/tailscale-subnet-router/compose.yaml index 9e6aa1a..e407c05 100644 --- a/tailscale-subnet-router/compose.yaml +++ b/tailscale-subnet-router/compose.yaml @@ -4,7 +4,7 @@ services: container_name: tailscale-subnet-router hostname: docker-router environment: - - TS_EXTRA_ARGS=--advertise-routes=192.168.68.0/24 --ssh --advertise-exit-node --reset --hostname=docker-router + - TS_EXTRA_ARGS=--advertise-routes=192.168.68.0/22 --ssh --accept-routes --advertise-exit-node --reset --hostname=docker-router - TS_STATE_DIR=/var/lib/tailscale - TS_USERSPACE=false volumes: From df76becf48b45e2eca83ee3ff57c3bd3cae9f960 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 21 Jun 2025 11:45:15 -0400 Subject: [PATCH 2/3] removed tailsacle subnet router fuck that noise. I can't figure out how to make it work and allow me to access devices on my local network. that was supposed to be the point of it! anyway, skill issue I'm sure but I gave up. --- tailscale-subnet-router/compose.yaml | 19 ------------------- tailscale-subnet-router/resolv.conf | 2 -- 2 files changed, 21 deletions(-) delete mode 100644 tailscale-subnet-router/compose.yaml delete mode 100644 tailscale-subnet-router/resolv.conf diff --git a/tailscale-subnet-router/compose.yaml b/tailscale-subnet-router/compose.yaml deleted file mode 100644 index e407c05..0000000 --- a/tailscale-subnet-router/compose.yaml +++ /dev/null @@ -1,19 +0,0 @@ -services: - tailscale: - image: tailscale/tailscale - container_name: tailscale-subnet-router - hostname: docker-router - environment: - - TS_EXTRA_ARGS=--advertise-routes=192.168.68.0/22 --ssh --accept-routes --advertise-exit-node --reset --hostname=docker-router - - TS_STATE_DIR=/var/lib/tailscale - - TS_USERSPACE=false - volumes: - - /var/lib/tailscale:/var/lib/tailscale - - /dev/net/tun:/dev/net/tun - network_mode: host - cap_add: - - net_admin - - net_raw - restart: unless-stopped -volumes: - tailscale-data: diff --git a/tailscale-subnet-router/resolv.conf b/tailscale-subnet-router/resolv.conf deleted file mode 100644 index 8967ec1..0000000 --- a/tailscale-subnet-router/resolv.conf +++ /dev/null @@ -1,2 +0,0 @@ -nameserver 1.1.1.1 -nameserver 9.9.9.9 From 882461225ef28eff2772bca4795658c4ec3b1301 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 21 Jun 2025 11:46:19 -0400 Subject: [PATCH 3/3] replaced with pangolin on vps --- nginxproxymanager/docker-compose.yml | 46 ---------------------------- 1 file changed, 46 deletions(-) delete mode 100644 nginxproxymanager/docker-compose.yml diff --git a/nginxproxymanager/docker-compose.yml b/nginxproxymanager/docker-compose.yml deleted file mode 100644 index 40c7c00..0000000 --- a/nginxproxymanager/docker-compose.yml +++ /dev/null @@ -1,46 +0,0 @@ -services: - app: - image: jc21/nginx-proxy-manager:latest - restart: unless-stopped - ports: - # These ports are in format : - - 80:80 # Public HTTP Port - - 443:443 # Public HTTPS Port - - 81:81 # Admin Web Port - # Add any other Stream port you want to expose - # - '21:21' # FTP - - # Uncomment the next line if you uncomment anything in the section - # environment: - # Uncomment this if you want to change the location of - # the SQLite DB file within the container - # DB_SQLITE_FILE: "/data/database.sqlite" - - # Uncomment this if IPv6 is not enabled on your host - # DISABLE_IPV6: 'true' - environment: - # Mysql/Maria connection parameters: - DB_MYSQL_HOST: db - DB_MYSQL_PORT: 3306 - DB_MYSQL_USER: npm - DB_MYSQL_PASSWORD: npm - DB_MYSQL_NAME: npm - volumes: - - ./data:/data - - ./letsencrypt:/etc/letsencrypt - depends_on: - - db - labels: - - diun.enable=true - db: - image: jc21/mariadb-aria:latest - restart: unless-stopped - environment: - MYSQL_ROOT_PASSWORD: npm - MYSQL_DATABASE: npm - MYSQL_USER: npm - MYSQL_PASSWORD: npm - volumes: - - ./mysql:/var/lib/mysql - labels: - - diun.enable=true