Return http status ok (200) on request method OPTIONS Apache
- by jazz
I have a apache server which uses Reverse Proxy to connect/direct to a tomcat server.
Using virtualHost,
RequestHeader set X-Forwarded-Proto "http"
ServerName image.abc.local
DocumentRoot "/var/www/html"
ProxyRequests Off
ProxyTimeout 600
ProxyPass /abc http://image.abc.local:9001/abc
ProxyPass /xyz http://image.abc.local:9001/xyz
ProxyPassReverse…