Commit 97faf5

2026-05-05 01:00:31 Anonymous: Add connection info section
our stack.md ..
@@ 31,6 31,25 @@
* public IP: `34.40.255.123`
* Wireguard VPN IP: `10.13.13.1`
+ ### How to Connect
+ ```sh
+ PEER=nathan
+ ssh ganesha "docker exec wireguard /app/show-peer $PEER"
+ ssh ganesha "sudo cat /var/lib/docker/volumes/infrastructure-setup_wireguard_config/_data/peer_$PEER/peer_$PEER.conf"
+ ```
+
+ ```powershell
+ $PEER = "nathan"
+ ssh ganesha "docker exec wireguard /app/show-peer $PEER"
+ ssh ganesha "sudo cat /var/lib/docker/volumes/infrastructure-setup_wireguard_config/_data/peer_$PEER/peer_$PEER.conf"
+ ```
+
+ ```cmd
+ set PEER=nathan
+ ssh ganesha "docker exec wireguard /app/show-peer %PEER%"
+ ssh ganesha "sudo cat /var/lib/docker/volumes/infrastructure-setup_wireguard_config/_data/peer_%PEER%/peer_%PEER%.conf"
+ ```
+
### Recommended Developer SSH Configuration
Assuming your `~/.ssh/config` includes the entries below, you will be able to simply run:
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9