diff --git a/conf/docker-aio/testdata/httpd.conf b/conf/docker-aio/testdata/httpd.conf new file mode 100644 index 00000000000..bf3e244a34e --- /dev/null +++ b/conf/docker-aio/testdata/httpd.conf @@ -0,0 +1,30 @@ + +Include conf.d/*.conf +Include conf.modules.d/*.conf +ServerName localhost +Listen 80 443 +PidFile run/httpd.pid +DocumentRoot "/var/www/html" +TypesConfig /etc/mime.types +User apache +Group apache + + + ServerName localhost + LogLevel debug + ErrorLog logs/error_log + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + CustomLog logs/access_log combined + + # proxy config (aka - what to send to glassfish or not) + ProxyPassMatch ^/RApacheInfo$ ! + ProxyPassMatch ^/custom ! + ProxyPassMatch ^/dataexplore ! + ProxyPassMatch ^/Shibboleth.sso ! + ProxyPassMatch ^/shibboleth-ds ! + # pass everything else to Glassfish + ProxyPass / ajp://localhost:8009/ +# glassfish can be slow sometimes + ProxyTimeout 300 + +