PSA: WebTunnel bridge on Debian 12 the "easy" way

I’m also unsure about the correct or recommended IPv6 configuration with a WebTunnel bridge at the moment.

If the system has an IPv4 and IPv6 address, there are A and AAAA DNS records, the proxy (Caddy) is redirecting to 127.0.0.1:15000, what should be used in torrc to offer IPv4 and IPv6?

Note: Docker is not used here.

ORPort 127.0.0.1:auto

or

ORPort 127.0.0.1:auto
ORPort [::1]:auto

or

ORPort 127.0.0.1:auto
ORPort [::1]:auto IPv6Only

Why should this happen?

Running in this mode and IPv4 and IPv6 are used for outgoing. But the last one with additional IPv6Only should also be fine.

I returned ORPort [::1]:auto, everything works.
Last time the log didn’t show any connections until I commented out that line.

1 Like

@gus maybe this can be added to your server-section script. otherwise you can’t put content on the website and it will always show the nginx-default…

server {

        root /var/www/html;

        index index.html index.htm index.nginx-debian.html;
        location / {
                try_files $uri $uri/ =404;
        }

………
}
1 Like