Diff of Infrastructure And Operations/Reverse-Tunnel at a8219e5

diff --git a/infrastructure_and_operations/reverse-tunnel.myco b/infrastructure_and_operations/reverse-tunnel.myco
index c93b763..d7bfe8f 100644
--- a/infrastructure_and_operations/reverse-tunnel.myco
+++ b/infrastructure_and_operations/reverse-tunnel.myco
@@ -45,3 +45,19 @@ Restart=always
 WantedBy=multi-user.target
+```
+
+
+Finally, I logged into elliot and edited the Caddy configuration file `/etc/caddy/Caddyfile` to add a stanza to route desired domain to the reverse tunneled port 3000.
 
-```
\ No newline at end of file
+```
+btcpay.cyberia.club {
+  reverse_proxy http://localhost:3000
+
+  log {
+    output file /var/log/caddy/access.log {
+      roll_size 256kb
+      roll_keep 2
+      roll_keep_for 24h
+    }
+  }
+}
+```