Frequently Asked Questions (FAQ)
1) All my IPS in X software apear as that of your proxy IP
Solution (
one of the following):
This is because it is actually our server connecting to yours, we send the real clients IP in a http header which can be utilized as follows.
1) Install mod_rpaf on
Apache [Tutorial:
cPanel (only the rpaf part)] [Tutorial:
Regular apache (again only the rpaf part -- at the end)]
2) Compile
nginx with mod-realip and configure accordigly
or
3) put this at the start of your
php script
PHP:
$_SERVER["REMOTE_ADDR"] = $_SERVER["HTTP_X_REAL_IP"];
A good place to put this is generally your config file as its generally the first php file included in all pages although it depends on the script.
2) Will this mod negatively or positively have any impact on my servers load.
Answer: Not really, if anything it will reduce load. This is because the fronted server will handle gzip and keepalive for the client two major contributors to static file load on apache.
3) How long of a wait is it for setup?
Answer: Setup occurs almost instantly (< 1 minute)