From 38fda6419c45cd8afe5f55e77cff45f2f95fd49c Mon Sep 17 00:00:00 2001 From: fufesou <13586388+fufesou@users.noreply.github.com> Date: Sat, 26 Apr 2025 11:03:20 +0800 Subject: [PATCH] Updated Set up http proxy server (markdown) --- Set-up-http-proxy-server.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Set-up-http-proxy-server.md b/Set-up-http-proxy-server.md index 7716813..0957ca7 100644 --- a/Set-up-http-proxy-server.md +++ b/Set-up-http-proxy-server.md @@ -174,6 +174,19 @@ One RustDesk user shared his method for creating an HTTPS proxy with Apache2. I > sudo ufw allow 443/tcp > sudo ufw allow 4443/tcp > +> You can verify the proxy like this +> +> ``` +> curl -x https://:443 --proxy-user myuser:mypassword -L http://www.yahoo.com +> ``` +> +> If you use your self-signed certificate, you can ignore the tsl verification by adding `--proxy-insecure` +> +> ``` +> curl -x https://:443 --proxy-user myuser:mypassword -L http://www.yahoo.com +> ``` +> + > Finally configure it on rustdesk: ![image](https://github.com/user-attachments/assets/b2d0db7e-b42b-4077-9bdc-ce003ac677d2)