Apache - Gateway (Reverse Proxy)

Card Puncher Data Processing

About

HTTP - Gateway (Reverse Proxy) in Apache

Management

Init

A reverse proxy is activated using:

  • the ProxyPass directive
  • or the [P] flag to the RewriteRule directive.

It is not necessary to turn ProxyRequests on in order to configure a reverse proxy.

P flag of the RewriteRule directive

The reverse proxy is configured with the rewrite mod and its P flag

Example: Rewrite of all URL to a OBI weblogic server With a Apache - Virtual Host (Vhost)

<VirtualHost *:80>
  ServerName bi.gerardnico.local
  
  RewriteEngine On
  # Rewrite everything 
  RewriteRule (.*) https://weblogic/analytics/$1 [P,L,QSA]
</VirtualHost>





Discover More
Card Puncher Data Processing
Apache - Proxy (mod_proxy)

mod_proxy module. Apache HTTP Server can be configured in both: a forward and reverse proxy (also known as gateway) mode.
HTTP - Gateway (Reverse Proxy)

A reverse proxy (or gateway) is a proxy that is configured to appear to the client just like an ordinary web server. Traffic from the internet at large enters system through reverse proxy, which then...
Jenkins Unlock
Jenkins - Docker Installation

Jenkins installation on Docker Create an container and run it from the Community edition image /var/run/docker.sock on Windows mounting JENKINS_HOME to a local directory (in our example to...



Share this page:
Follow us:
Task Runner