Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<IfModule mod_weblogic.c> WebLogicHost obiwan.advansit.

com WebLogicPort 7001 </IfModule> # Admin Server and EM <Location /console> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 7001 </Location> <Location /consolehelp> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 7001 </Location> <Location /em> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 7001 </Location> #Oracle Directory Services Manager <Location /odsm> SetHandler weblogic-handler WebLogicCluster obiwan.advansit.com:7006,obiwan.advansit.com:7006 </Location> <Location /analytics> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 9704 </Location> <Location /xmlpserve> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 9704 </Location> <Location /ui> SetHandler weblogic-handler WebLogicHost obiwan.advansit.com WeblogicPort 9704 </Location> WebLogic Console http://obiwan.advansit.com:7001/console Oracle Enterprise Manager http://obiwan.advansit.com:7001/em Business Intelligence Enterprise Edition http://obiwan.advansit.com:9704/analytics Business Intelligence Publisher http://obiwan.advansit.com:9704/xmlpserver Real-Time Decisions http://obiwan.advansit.com:9704/ui How to Enable Compression and Caching:

1. To implement HTTP compression / caching, install and configure Oracle HTTPSer ver (OHS) 11.1.1.x for the bi_server_n Managed Servers (refer to "OBIEE EnterpriseDeployment Guide for Oracle Business Intelligence" do cument for details). 2. On the OHS machine, open the file HTTP Server configuration file ( httpd.conf ) forediting. This file is located in the OHS installation directory. For exampl e: ORACLE_HOME/Oracle_WT1/instances/instance1/config/OHS/ohs1 3. In httpd.conf file, verify that the following directives are included and notcommented out: LoadModule expires_module "/u01/Middleware/Oracle_WT1/ohs/modules/mod_expires.so " LoadModule deflate_module "/u01/Middleware/Oracle_WT1/ohs/modules/mod_deflate.so " LoadModule section tocompression / caching and restart the OHS: #HTTP Compression <IfModule mod_deflate.c> SetOutputFilter DEFLATE SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:pdf|doc?x|ppt?x|xls?x)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.avi$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.mov$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.mp3$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.mp4$ no-gzip dont-vary </IfModule> #Caching of static files ExpiresActive On <IfModule mod_expires.c> ExpiresByType image/gif "access plus 7 days" ExpiresByType image/jpeg "access plus 7 days" ExpiresByType application/x-javascript "access plus 7 days" ExpiresByType text/css "access plus 7 days" ExpiresByType text/javascript "access plus 7 days" ExpiresByType image/png "access plus 7 days" </IfModule> <IfModule mod_headers.c> <FilesMatch "\.(gif|jpeg|png|x-javascript|javascript|css)$"> Header set Cache-Control "max-age=604800" </FilesMatch> </IfModule>

You might also like