fix(rego-tunnel): Remove Traefik basic auth
Some checks failed
Test / test (push) Has been cancelled
Some checks failed
Test / test (push) Has been cancelled
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
"dynamic_config": true,
|
"dynamic_config": true,
|
||||||
"id": "rego-tunnel",
|
"id": "rego-tunnel",
|
||||||
"description": "Cisco Secure Client VPN in Docker with noVNC web UI for accessing Rego environments. No VM overhead.",
|
"description": "Cisco Secure Client VPN in Docker with noVNC web UI for accessing Rego environments. No VM overhead.",
|
||||||
"tipi_version": 4,
|
"tipi_version": 5,
|
||||||
"version": "5.1.14.145",
|
"version": "5.1.14.145",
|
||||||
"categories": ["utilities"],
|
"categories": ["utilities"],
|
||||||
"short_desc": "Cisco VPN tunnel to Rego environments (native Docker, no VM)",
|
"short_desc": "Cisco VPN tunnel to Rego environments (native Docker, no VM)",
|
||||||
@@ -65,15 +65,6 @@
|
|||||||
"required": false,
|
"required": false,
|
||||||
"env_variable": "VNC_PASSWORD",
|
"env_variable": "VNC_PASSWORD",
|
||||||
"default": "cisco123"
|
"default": "cisco123"
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "text",
|
|
||||||
"label": "Basic Auth Users",
|
|
||||||
"hint": "Traefik basic auth users string (htpasswd format). Use generate-traefik-basicauth.sh to create.",
|
|
||||||
"placeholder": "user:$$apr1$$hash",
|
|
||||||
"required": false,
|
|
||||||
"env_variable": "BASICAUTH_USERS",
|
|
||||||
"default": ""
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"supported_architectures": ["amd64"]
|
"supported_architectures": ["amd64"]
|
||||||
|
|||||||
@@ -69,8 +69,6 @@
|
|||||||
],
|
],
|
||||||
"isMain": true,
|
"isMain": true,
|
||||||
"extraLabels": {
|
"extraLabels": {
|
||||||
"traefik.http.middlewares.rego-tunnel-runtipi-auth.basicauth.users": "${BASICAUTH_USERS}",
|
|
||||||
"traefik.http.routers.rego-tunnel-runtipi.middlewares": "rego-tunnel-runtipi-auth",
|
|
||||||
"runtipi.managed": true
|
"runtipi.managed": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/config:/config
|
- ${APP_DATA_DIR}/config:/config
|
||||||
- /etc/runtipi/user-config/runtipi/rego-tunnel/shared:/shared
|
- /etc/runtipi/user-config/runtipi/rego-tunnel/shared:/shared
|
||||||
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||||
labels:
|
labels:
|
||||||
generated: true
|
generated: true
|
||||||
traefik.enable: true
|
traefik.enable: true
|
||||||
@@ -30,12 +31,10 @@ services:
|
|||||||
traefik.http.routers.rego-tunnel-runtipi-insecure.entrypoints: web
|
traefik.http.routers.rego-tunnel-runtipi-insecure.entrypoints: web
|
||||||
traefik.http.routers.rego-tunnel-runtipi-insecure.service: rego-tunnel-runtipi
|
traefik.http.routers.rego-tunnel-runtipi-insecure.service: rego-tunnel-runtipi
|
||||||
traefik.http.routers.rego-tunnel-runtipi-insecure.middlewares: rego-tunnel-runtipi-web-redirect
|
traefik.http.routers.rego-tunnel-runtipi-insecure.middlewares: rego-tunnel-runtipi-web-redirect
|
||||||
traefik.http.middlewares.rego-tunnel-runtipi-auth.basicauth.users: "${BASICAUTH_USERS}"
|
|
||||||
traefik.http.routers.rego-tunnel-runtipi.rule: Host(`${APP_DOMAIN}`)
|
traefik.http.routers.rego-tunnel-runtipi.rule: Host(`${APP_DOMAIN}`)
|
||||||
traefik.http.routers.rego-tunnel-runtipi.entrypoints: websecure
|
traefik.http.routers.rego-tunnel-runtipi.entrypoints: websecure
|
||||||
traefik.http.routers.rego-tunnel-runtipi.service: rego-tunnel-runtipi
|
traefik.http.routers.rego-tunnel-runtipi.service: rego-tunnel-runtipi
|
||||||
traefik.http.routers.rego-tunnel-runtipi.tls.certresolver: myresolver
|
traefik.http.routers.rego-tunnel-runtipi.tls.certresolver: myresolver
|
||||||
traefik.http.routers.rego-tunnel-runtipi.middlewares: rego-tunnel-runtipi-auth
|
|
||||||
runtipi.managed: true
|
runtipi.managed: true
|
||||||
runtipi.appurn: rego-tunnel:runtipi
|
runtipi.appurn: rego-tunnel:runtipi
|
||||||
cap_add:
|
cap_add:
|
||||||
@@ -43,4 +42,5 @@ services:
|
|||||||
devices:
|
devices:
|
||||||
- /dev/net/tun
|
- /dev/net/tun
|
||||||
privileged: true
|
privileged: true
|
||||||
|
cgroup: host
|
||||||
stop_grace_period: 30s
|
stop_grace_period: 30s
|
||||||
|
|||||||
Reference in New Issue
Block a user