I am trying to configure Apache to act as a proxy to a remote server, to allow cross-domain AJAX using CORS. To achieve this, I need Apache to respond to 2 HTTP verbs, like so:
OPTIONS: Respond to this CORS 'pre-flight' request with some simple HTTP headers. I had in mind that this could be a simple CGI script (options.pl).
POST: Proxy all POST requests to the remote server, but add the Access-Control-Allow-Origin "*" header to allow the cross-domain request to happen.
I can achieve both of these requirements independently, but I cannot configure Apache to do both. The problem is that when the ProxyPass and ProxyPassReverse is configured, the OPTIONS requests no longer hit the CGI script, they are proxied to the remote server.
My current config is below. I'd like to solve this with a pure web-server solution e.g. Apache/Nginx (rather than running some application code), if possible.
<VirtualHost *:80>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
DocumentRoot /var/www
<Location "/">
# Disallow all verbs except OPTIONS and POST
order deny,allow
deny from all
# OPTIONS should be handled by a local CGI script
<Limit OPTIONS>
allow from all
Script OPTIONS /cgi-bin/options.pl
</Limit>
# POST requests are proxied to a remote server
<Limit POST>
allow from all
ProxyPass http://somewhere-else/
ProxyPassReverse http://somewhere-else/
Header add Access-Control-Allow-Origin "*"
</Limit>
</Location>
</VirtualHost>