Updated Set up http proxy server (markdown)

fufesou
2025-04-26 11:11:30 +08:00
parent 38fda6419c
commit 77096d9b16

@@ -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: > 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: > 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` > If you use your self-signed certificate, you can ignore the tsl verification by adding `--proxy-insecure`
> >
> ``` > ```
> curl -x https://<proxy-server-ip>:443 --proxy-user myuser:mypassword -L http://www.yahoo.com > curl -x https://<proxy-server-ip>:443 --proxy-user myuser:mypassword -L http://www.yahoo.com --proxy-insecure
> ``` > ```
> >