Updated Set up http proxy server (markdown)

fufesou 2025-04-26 11:03:20 +08:00
parent ad30c0097f
commit 38fda6419c

@ -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://<proxy-server-ip>: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://<proxy-server-ip>: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)