From 77096d9b1646fd76fb711ee4150504a5e934e388 Mon Sep 17 00:00:00 2001 From: fufesou <13586388+fufesou@users.noreply.github.com> Date: Sat, 26 Apr 2025 11:11:30 +0800 Subject: [PATCH] Updated Set up http proxy server (markdown) --- Set-up-http-proxy-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Set-up-http-proxy-server.md b/Set-up-http-proxy-server.md index 0957ca7..46910b3 100644 --- a/Set-up-http-proxy-server.md +++ b/Set-up-http-proxy-server.md @@ -121,7 +121,7 @@ One RustDesk user shared his method for creating an HTTPS proxy with Apache2. I > > Create a file with proxy-user credentials: > -> sudo htpasswd -b -c /etc/apache2/.htpasswd proxy-user your-password +> sudo htpasswd -b -c /etc/apache2/.htpasswd myuser mypassword > > Create a file `/etc/apache2/sites-available/rustdesk.conf` and add below lines: > @@ -183,7 +183,7 @@ One RustDesk user shared his method for creating an HTTPS proxy with Apache2. I > 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 +> curl -x https://:443 --proxy-user myuser:mypassword -L http://www.yahoo.com --proxy-insecure > ``` >