I have a nextcloud instance locally with self-signed certificate, I tried to use cloudflared argo to access from instance from outside but generated URL never works.
This is my config file:
tunnel: tunnel_id
credentials-file: /home/me/.cloudflared/tunnel_id.json
ingress:
- hostname: cloud.domain.com
service: https://localhost:443
originRequest:
connectTimeout: 10s
noTLSverify: true
- service: http_status:404
I tried no-tls-verify: true
as well.
After running it (cloudflared tunnel --config config.yml run
) shows no error but the instance still not available from URL even from tunnel_id.cfargotunnel.com
.
If I try cloudflared tunnel --url https://localhost:443 --no-tls-verify
it works, random_strings.cfargotunnel.com
which is generated points to my service, without --no-tls-verify
it shows some errors.
Where did I make mistake?
cloudflared version 2021.7.0 (built 2021-07-12-1109 UTC)