From 6686666e016b0266f1d92685d2e2bcea177b46ff Mon Sep 17 00:00:00 2001 From: fzorb Date: Tue, 8 Oct 2024 23:28:28 +0300 Subject: [PATCH] oops --- content/posts/safely-selfhosting.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/posts/safely-selfhosting.md b/content/posts/safely-selfhosting.md index 3436c95..d1e7008 100644 --- a/content/posts/safely-selfhosting.md +++ b/content/posts/safely-selfhosting.md @@ -48,9 +48,10 @@ sudo systemctl enable --now openvpn-client@server # so we get connected on start ``` To check if you've done it correctly, you can do this: ``` -curl https://fzorb.xyz/ip +~~curl https://fzorb.xyz/ip # this is currently broken~~ ``` -... and if it outputs your VPS's IP, congratulations, you've just connected your server to your VPS! +~~... and if it outputs your VPS's IP, congratulations, you've just connected your server to your VPS!~~ +You should instead check it with `ip a` and see if you have a `tun0` or similar interface for now. ## Step 4. forwarding HTTP requests to your own box. When a user wants to access your website, the Nginx server running on the VPS will reverse proxy whatever site they want to access. It's pretty simple.