Answer the question
In order to leave comments, you need to log in
Proxying rdp through nginx?
The network is built like this.
1.VPS on which wireguard is installed, and port forwarding, the internal ip of the server is 10.0.0.1
2.ubunt is connected to it, nginx and the site are installed on it, internal ip is 10.0.0.2, ports that are forwarded to it: 80 , 443, 3389.
3. Ubuntu is installed on a virtual machine, also located in the home local network, with ip - 192.168.1.100, the machine on which rdp is installed has ip - 192.168.1.101
If I write this in the nginx config:
server {
listen 3389;
server_name rdp.mydomain.com;
location / {
proxy_pass http://192.168.1.101:3389;
}
}
Answer the question
In order to leave comments, you need to log in
Why did you decide that http\https proxying will help you get through to RDP?
Configure via stream
https://docs.nginx.com/nginx/admin-guide/load-bala...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question