I currently have a Tomcat + apache http server setting to serve my Java servlet: ProxyPass /myservice http://localhost:8080/myservice ProxyPassRerverse /myservice http://localhost:8080/myservice this is all fine except that myservice needs to know client ip address, which always turns out to be 127.0.0.1 due to the Proxy, is there a solution to get the real ip address? is AJP an option?
doGet(HttpServletRequest request, HttpServletResponse response){ request.getRemoteAddr() }
