Skip to content
master
Go to file
Code

Latest commit

mod_proxy_protocol.c was getting installed instead of mod_proxy_protocol.so
7e55104

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

Apache Proxy Protocol Module

This is an Apache module that implements the server side of HAProxy's Proxy Protocol.

Note: as of Apache 2.4.30 this code has been merged into mod_remoteip, with the ProxyProtocol directive renamed to RemoteIPProxyProtocol.

Build and Install

You'll need the apache development packages installed (typically something like apache-devel or apache2-dev). Then simply running make will create the shared library in .libs/mod_proxy_protocol.so; make install will attempt to install it in your current apache installation (you'll probably need to be root for this).

Configuration

Add the following directive to your apache config to load the module

LoadModule proxy_protocol_module <path-to-module>/mod_proxy_protocol.so

or try running

apxs -a mod_proxy_protocol.c

For configuration details see the module docs

Amazon EC2 Notes

To properly secure Apache when using this on EC2 behind an ELB you'll probably want to do something like the following to ensure that only the ELB can provide the proxy protocol header while still being able to access the site directly (not via the ELB):

  1. In Apache create a copy of virtual host with a new port, and add the 'ProxyProtocol On' directive to this new virtual host.
  2. Add an entry to the security group for the server that only allows access to this new port from the ELB (specify the source as amazon-elb/amazon-elb-sg)
  3. Point the ELB listener at this new port (and of course enable the proxy protocol for that)

TODO

  • Add access-control (see commented out ProxyProtocolTrustedProxies in mod_proxy_protocol.xml)
  • Add support for outgoing connections (mod_proxy)

About

An implementation of the proxy protocol for Apache.

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.