Dear All,
We are using Java Based CMS with Tomcat (Application Server) & Apache HTTP for WebServer.
When the User hit the URL, the request will flow blow below:
F5->WebServer->Tomcat->CMS & DataBase.
All Static Files are stored under shared filesystem: /opt/apps/shared/cms/docroot and mounted on all servers. Currently if any requests come it will goes to Tomcat Server only. Instead of that we want to catch the URL at WebServer Level and redirect to WebServer's Shared location.
eg: then it should pick the image from WebServer's Local path: /opt/apps/shared/cms/docroot/cms/about/image1.jpg.
I tried to use Directory, Alias but its not working, Kindly please help on this.
Thanks
Jayaram
We are using Java Based CMS with Tomcat (Application Server) & Apache HTTP for WebServer.
When the User hit the URL, the request will flow blow below:
F5->WebServer->Tomcat->CMS & DataBase.
All Static Files are stored under shared filesystem: /opt/apps/shared/cms/docroot and mounted on all servers. Currently if any requests come it will goes to Tomcat Server only. Instead of that we want to catch the URL at WebServer Level and redirect to WebServer's Shared location.
eg: then it should pick the image from WebServer's Local path: /opt/apps/shared/cms/docroot/cms/about/image1.jpg.
I tried to use Directory, Alias but its not working, Kindly please help on this.
Code:
Alias "/file_source" "/opt/apps/shared/cms/docroot"
Thanks
Jayaram