JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

How to route Apache ProxyPass configuration through another proxy server? (Proxy to proxy)


Sometimes we do configure forward proxy (ex: Squid Proxy) behind Apache server. This page help us to understand how to configure ProxyPass configurations within Apache httpd.conf file.

Incase if we want to route our requests through proxy from within Apache, then you need to add ProxyRemote under your VirtualHost configurations as shown below:

<VirtualHost example.com:443>
    SSLEngine on
       [cert file config]
    ServerName example.com
    ...
    ...
    ...
    ProxyRemote * http://myproxyhost.com:3128
    ProxyPass /myapp/ http://testapp.com/myapp/
</VirtualHost>

As per the Apache documentation, ProxyRemote defines remote proxies to this proxy. The syntax is:

ProxyRemote match remote-server

match is either the name of a URL-scheme that the remote server supports, or a partial URL for which the remote server should be used, or * to indicate the server should be contacted for all requests. remote-server is a partial URL for the remote server.

Here is some examples:

Example
ProxyRemote "http://goodguys.example.com/" "http://mirrorguys.example.com:8000"

ProxyRemote "*" "http://cleverproxy.localdomain"

ProxyRemote "ftp" "http://ftpproxy.mydomain:8080"

Java problems and solutions

  1. Unable to install Java 7 in Eclipse on Mac - Java 7 Mac OS issues
  2. How to change Java (JVM) version in Mac OS? - Java version Mac OS issues
  3. SunCertPathBuilderException: Unable To Find Valid Certification Path To Requested Target
  4. How to merge two jssecacerts files? - Merge key store files
  5. How to write Micro-Benchmark for java Hotspot?
  6. servlet-api-2.5.jar - jar not loaded - tomcat error
  7. How to exclude property files in a jar using Maven
  8. ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
  9. CGLIB is required to process @Configuration classes
  10. Git command to list conflicted files
  11. Where is default localhost folder in Mac OSX?
  12. How to edit hosts file on Mac OSX
  13. How to set up java version in Maven based projects?
  14. How to split a string by new line character in java?
  15. How to configure Spring Boot without the parent POM (spring-boot-starter-parent)?
  16. My Spring boot application is not scaning my components (controllers)
  17. How to download a file in Spring RestController?
  18. How to get convert excel HSSFWorkbook (workbook) into byte array?
  19. How to add Oracle JDBC driver in your Maven local repository
  20. How to add jar file in your Maven local repository using command line?
  21. How to add default value to Spring @Value annotation?
  22. How to route Apache ProxyPass configuration through another proxy server? (Proxy to proxy)
  23. How to disable Maven unit test?
Knowledge Centre
What is race condition?
A race condition is a situation in which two or more threads or processes are reading or writing some shared data, and the final result depends on the timing of how the threads are scheduled. Race conditions can lead to unpredictable results and subtle program bugs. A thread can prevent this from happening by locking an object. When an object is locked by one thread and another thread tries to call a synchronized method on the same object, the second thread will block until the object is unlocked.
Famous Quotations
The very best thing you can do for the whole world is to make the most of yourself.
-- Wallace Wattles

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.