Configure Proxy Server For Bluestacks On 2017

  

Today i got task to onboard one server exposed to internet. It is Linux server, use RHEL. From architecture design the best practice workflow as shown below whenever we would establish something to outside world.

Composer proxy settings. Thankfully this is capable of using the Operating System proxy environment variables. So if you set them as above for Windows and/or Linux you should be good to go. Java proxy settings. This has it’s own rules just like all the others. But you may also run into Java applications having their own proxy settings too. Sep 08, 2020 Command line setting. You can also configure proxy server settings by using the netsh winhttp set proxy command. This option is recommended only for testing, because it isn't easy to deploy. The command must be executed at a command prompt by using Administrative credentials. We don't recommend this option for mobile computers.

Internet -> load balancer -> reverse proxy -> web server -> app server -> db server

Configure Proxy Server For Bluestacks On 2017Configure Proxy Server For Bluestacks On 2017

Everything is well configured from network side, including NAT and created virtual ip pool from load balancer side. Same goes for backend servers.

So, i tried to configure reverse proxy with very simple two lines;

ProxyPass / http://[ip local web server]:80
ProxyPassReverse / http://[ip local web server]:80

Configure

Start the HTTPD service and test from public ip. It giving DNS Lookup Failure somehow. It always been working before but not today. Very weird.

Just took couple minutes and realize i did very simple mistake, TYPO.

Configure Proxy Server For Bluestacks On 2017Bluestacks

There is minus slash symbol on the ProxyPass configuration! It supposed to be like below.

ProxyPass / http://[ip local web server]:80/
ProxyPassReverse / http://[ip local web server]:80/

Did you see it? did you realize?

Yeah something must be fixed even using single character.

Configure Proxy Server For Bluestacks On 2017 Full

Works like charm now.

Configure Proxy Server For Bluestacks On 2017 Version

Don’t forget to restart the HTTPD service to apply the changes.