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 > ``` >