This repository has been archived by the owner on Dec 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ This module was originally written by Thomas Eibner <[email protected]>. | |
|
||
The differences from the original module are: | ||
* Feature: Support for partial IP address as '10.1.' for RPAFproxy_ips. The author of this patch is unknown. | ||
* Feature: Recursive ip extraction with RPAFrecursive directive. | ||
* Bugfix: In the case of APR_HAVE_IPV6-enabled build, access control of Order/Allow/Deny does not work correctly. | ||
* Support of httpd 1.3 was deleted. | ||
|
||
|
@@ -29,6 +30,11 @@ or simply try: | |
# Allows you to change which header mod_rpaf looks | ||
# for when trying to find the ip the that is forwarding | ||
# our requests | ||
RPAFrecursive On | ||
# If recursive search is disabled, remote address is replaced by the | ||
# last address in RPAFheader directive. If recursive search is | ||
# enabled, remote address is replaced by the last non-trusted address | ||
# in RPAFheader directive. | ||
|
||
## Author | ||
* Thomas Eibner <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ RPAFenable On | |
RPAFsethostname On | ||
RPAFproxy_ips 127.0.0.1 | ||
RPAFheader X-Forwarded-For | ||
RPAFrecursive Off |