I have this proxy setup in Apache
# Proxy specific settings
ProxyRequests Off
ProxyPreserveHost Off
<Proxy *>
AddDefaultCharset off
Order deny,allow
Allow from all
</Proxy>
ProxyPass /solrsearch http://localhost:8080/solr/collection1/select
ProxyPassReverse /solrsearch http://localhost:8080/solr/collection1/select
My question is:
When somebody goes to http://mydomain.com/solrsearch
Which I.P would http://localhost:8080/solr/collection1/select
'see'?
Would it see the I.P of the visitor. Or since it is a proxy, would it see the I.P of apache? (127.0.0.1)