In short: We have a remote server. Which contains several instances of Symfony2. For example, example.com/page1 and example.com/page2 are different AWS instances with different applications. One of those (i.e. / page1 ) is my responsibility. And I can develop it remotely and locally. Obviously, locally this is the fastest way, but there is a list of reasons why it is better developed remotely when all applications work simultaneously in a similar area. Therefore, I want example.com/page1 to refer to my local instance, so I do not send files via FTP every Cmd + S.
From Apache settings, I can map the local URL to the remote one by making it using ProxyPass
ProxyPass /app/ http://example.com/app/
What I need is exactly the same, but vice versa.
I have two identical web applications working remotely and locally.
Remote : https://example.com:33333/app/ {3333 / https://example.com:33333/app/
Local : http://localhost:22222/app/
I need to make it work this way:
https://example.com:33333/homepage/ → https://example.com:33333/homepage/ https://example.com:33333/homepage/ 3333/ https://example.com:33333/homepage/https://example.com:33333/app/ http://localhost:22222/app/ → http://localhost:22222/app/
Saving the remote URL in the address bar of the browser.
Is it possible to install it on my end (not with ProxyPass on the remote side)
Perhaps some kind of Chrome extension or proxy application?
Maxym source share