I am looking to add custom HTTPD configurations to a subdomain, as opposed to the entire domain itself. I'm need to use mod_proxy, but it looks like it's acting as a wildcard and is now redirecting all subdomains of my domain when I only want it to be done for a specific subdomain.
How can I apply this to a single alias?
Any help would be greatly appreciated!
Code:
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://127.0.0.1:8080/
ProxyPassReverse http://127.0.0.1:8080/
</Location>
How can I apply this to a single alias?
Any help would be greatly appreciated!