The build of apache 2.4.7-1ubuntu4.14 in the ppa appears to work for me. It would be good if the original bug reporter could test the build in the ppa in order to verify it before it goes into trusty-proposed though, thanks.
Here is the test case I used: root@ubuntu:~$ apt-cache show apache2 | grep Version Version: 2.4.7-1ubuntu4.13 root@ubuntu:/etc/apache2# a2enmod rewrite remoteip root@ubuntu:~$ cat /etc/apache2/sites-available/remoteip.conf <VirtualHost *:80> RemoteIPHeader X-Forwarded-For RemoteIPTrustedProxy 127.0.0.1 RewriteEngine on RewriteRule ^/?(.*) http://test.invalid/%{REMOTE_ADDR} [R=301,L] </VirtualHost> root@ubuntu:/home/ubuntu# a2dissite 000-default root@ubuntu:/home/ubuntu# a2ensite remoteip root@ubuntu:/home/ubuntu# service apache2 restart root@ubuntu:/home/ubuntu# curl -vH 'X-Forwarded-For: 1.2.3.4' http://127.0.0.1 2>&1 | grep Location < Location: http://test.invalid/1.2.3.4 root@ubuntu:/home/ubuntu# curl -vH 'X-Forwarded-For: 5.6.7.8, 1.2.3.4' http://127.0.0.1 2>&1 | grep Location < Location: http://test.invalid/5.6.7.8 root@ubuntu:/home/ubuntu# apt-add-repository ppa:wesley-wiedenmeier/test2 root@ubuntu:/home/ubuntu# apt-get update root@ubuntu:/home/ubuntu# apt-get install apache2 root@ubuntu:/home/ubuntu# apt-cache show apache2 | grep Version Version: 2.4.7-1ubuntu4.14 root@ubuntu:/home/ubuntu# service apache2 restart root@ubuntu:/home/ubuntu# curl -vH 'X-Forwarded-For: 1.2.3.4' http://127.0.0.1 2>&1 | grep Location < Location: http://test.invalid/1.2.3.4 root@ubuntu:/home/ubuntu# curl -vH 'X-Forwarded-For: 5.6.7.8, 1.2.3.4' http://127.0.0.1 2>&1 | grep Location < Location: http://test.invalid/1.2.3.4 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1511222 Title: Incorrect trusted proxy match test in mod_remoteip To manage notifications about this bug go to: https://bugs.launchpad.net/apache2/+bug/1511222/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs