I’ve tried a few sites with wifi on and off. Nothing loads from my phone while the VPN is on. Do these look correct:
Peer1.conf
Address = 10.13.13.2
PrivateKey = redacted
ListenPort = 51820
DNS = 192.168.1.29
[Peer]
PublicKey = redacted
Endpoint = wireguard.domain.com:51820
AllowedIPs = 0.0.0.0/0, ::/0
wg0.conf
Address = 10.13.13.1
ListenPort = 51820
PrivateKey = redacted
PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
[Peer]
PublicKey = redacted
AllowedIPs = 10.13.13.2/32
.donoteditthisfile
ORIG_SERVERPORT=51820
ORIG_PEERDNS=192.168.1.29
ORIG_PEERS=1
ORIG_INTERFACE=10.13.13
I also set port forwarding on my router to my Pis address (192.168.1.29) for port 51820. I’m not sure what else I can try.