I have the following compose file to test out funnel.
It creates the machine in my tailnet, but I am unable to access my service via https://joplin.<...>.ts.net.
When I look at the details for this machine on my tailscale dashboard, i see that there is no valid certificate, which probably is the reason for me not being able to connect. Did I miss a step somewhere?
tn-joplin:
image: lscr.io/linuxserver/joplin:latest
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
# volumes:
# - /path/to/config:/config
ports:
- 3000:3000
# - 3001:3001
shm_size: "1gb"
labels:
tsbridge.enabled: true
tsbridge.service.name: "joplin"
tsbridge.service.backend_addr: "tn-joplin:3000"
tsbridge.service.ephemeral: true
tsbridge.service.whois_enabled: true
tsbridge.service.funnel_enabled: true
tsbridge.service.tls_mode: auto
I have the following compose file to test out funnel.
It creates the machine in my tailnet, but I am unable to access my service via
https://joplin.<...>.ts.net.When I look at the details for this machine on my tailscale dashboard, i see that there is no valid certificate, which probably is the reason for me not being able to connect. Did I miss a step somewhere?