Hi phranque,
When i hit the url its redirecting me to application configured in virtual host i.e backend war file deployed on weblogic. But when i try to hit the dusty page directly i get the apache failure error as shown above.
My vhost file:
<VirtualHost shopping-devel-uwebda01.ext.asp.cuc.com:80>
ServerName example.com
RewriteEngine on
##### Disable Trace Method #####
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
RewriteLog logs/rewrite
DocumentRoot /home/atgwww/docroot/
# Redirect all requests to ssl and preserve the querystring
RewriteRule ^.*$ [
example.com$0...] [L,QSA]
</VirtualHost>
<VirtualHost shopping-devel-uwebda01.ext.asp.cuc.com:443>
ServerName example.com
DocumentRoot /home/atgwww/docroot/
RewriteEngine on
##### Disable Trace Method #####
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
RewriteLog logs/rewrite
SSLEngine on
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
SSLCipherSuite ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SSLCertificateFile /home/atgwww/certs/shopping-devel-uwebda01.crt
SSLCertificateKeyFile /home/atgwww/certs/shopping-devel-uwebda01.key
SSLProtocol -ALL +SSLv3 +TLSv1
<IfDefine !usty>
RewriteRule ^/$ /ancillary-access/ [L,R,QSA]
<LocationMatch "^/(ancillary-access|certs|MEDIA_*|static|ProductImages|CategoryImages|Utilities_Web|Images|logview)">
SetHandler weblogic-handler
WLCookieName store-cookie
WebLogicCluster wlserver:9602,wlserver:9602
DynamicServerList OFF
SecureProxy ON
WLSSLWallet /home/atgwww/certs/Wallet
ErrorPage /Dusty/store/GFdusty.html
# uncomment for debug to /tmp
#Debug ALL
WLForwardUriUnparsed ON
WLExcludePathOrMimeType /MEDIA_*/*,/static/*,/ProductImages/*,/CategoryImages/*,/Utilities_Web/*,Images/*
</LocationMatch>
</IfDefine>
# If we got this far Apache was started under dusty mode
# The following conditions allow images/styles to be
# returned
RewriteCond %{REQUEST_URI} !^/ancillary-access/*
RewriteCond %{REQUEST_URI} !^/certs/*
RewriteCond %{REQUEST_URI} !^/MEDIA_*/*
RewriteCond %{REQUEST_URI} !^/static/*
RewriteCond %{REQUEST_URI} !^/ProductImages/*
RewriteCond %{REQUEST_URI} !^/CategoryImages/*
RewriteCond %{REQUEST_URI} !^/Utilities_Web/*
RewriteCond %{REQUEST_URI} !^/Images/*
RewriteCond %{REQUEST_URI} !^/Dusty/*
RewriteRule .* /Dusty/store/GFdusty.html [L]
CustomLog /home/atgwww/logs/httpd/access_log common
ErrorLog /home/atgwww/logs/httpd/error_log
</VirtualHost>