How to Setup a Signal Proxy on Bare Metal
Website: https://signal.org/blog/signal-proxy/
Description: Bypass Signal blocking while maintaining E2EE
1
2
3
Installation
Follow instructions here: https://github.com/signalapp/Signal-TLS-Proxy
Verify ports can be accessed
sudo lsof -i -P -n | grep LISTEN
sshd 934 root 3u IPv4 16420 0t0 TCP *:22 (LISTEN)
sshd 934 root 4u IPv6 16422 0t0 TCP *:22 (LISTEN)
nginx 4269 root 5u IPv4 27939 0t0 TCP *:80 (LISTEN)
nginx 4269 root 6u IPv6 27940 0t0 TCP *:80 (LISTEN)
nginx 5764 www-data 5u IPv4 27939 0t0 TCP *:80 (LISTEN)
nginx 5764 www-data 6u IPv6 27940 0t0 TCP *:80 (LISTEN)
nginx 5765 www-data 5u IPv4 27939 0t0 TCP *:80 (LISTEN)
nginx 5765 www-data 6u IPv6 27940 0t0 TCP *:80 (LISTEN)Once you’re live, you’ll see:
root@funbox:~/signal# docker compose up --detach
[+] Running 3/3
✔ Container signal-nginx-relay-1 Running 0.0s
✔ Container signal-certbot-1 Running 0.0s
✔ Container signal-nginx-terminate-1 Startedroot@funbox:~/signal# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0a92bd625e68 signal-nginx-terminate "/docker-entrypoint.…" 4 minutes ago Up 5 seconds 0.0.0.0:80->80/tcp, :::80->80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp signal-nginx-terminate-1
ad5f7541cbba signal-nginx-relay "/docker-entrypoint.…" 4 minutes ago Up 3 minutes 80/tcp signal-nginx-relay-1
579de561be69 certbot/certbot "/bin/sh -c 'trap ex…" 4 minutes ago Up 4 minutes 80/tcp, 443/tcpWas this helpful?
