Configure Proxy Server For Bluestacks On 2017

Forward Proxy Server – An Ubuntu 14.04 Server running Apache with IP 192.168.0.62; Client – An Ubuntu 14.04 Server with IP 192.168.0.51; Remote Server: – An Ubuntu 14.04 Server with IP 192.168.0.50. This server runs Jenkins so I will be accessing Jenkins from my client via the proxy server. Steps to Perform: – Configure Forward Proxy. Configure BlueStacks to Use a Proxy Server. Start BlueStacks. (It has to be open before running the utiity). If you have multiple instance, it has to be the default master one. Open a Windows command prompt. Hit +R → type cmd → hit Enter ) Change to the BlueStacks program folder. Cd C: Program Files BlueStacks ) Run HD.

  1. Configure Proxy Server For Bluestacks On 2017 Version
  2. Configure Proxy Server For Bluestacks On 2017 2018

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.

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

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

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.

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

Configure Proxy Server For Bluestacks On 2017 Version

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

Did you see it? did you realize?

Bluestacks

Yeah something must be fixed even using single character.

Works like charm now.

Configure Proxy Server For Bluestacks On 2017 2018

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

Comments are closed.