我正在使用仅使用服务器名称(例如http://example/mapper.pl?some=thing
)访问网站时正确呈现HTML的网站。但是,当我尝试通过其完全限定的域名(例如www.example.com/mapper.pl?some=thing
)或其IP地址(例如http://123.456.789.012/mapper.pl?some=thing
)访问网站时,HTML会显示为文本。此外,html页面由珍珠脚本和模块生成。在IE开发工具中使用网络监视器时,我可以看到,当只使用服务器名称(成功显示)时,调用mapper.pl?some=thing后调用css和javascript文件。当使用完全限定的域名或IP时(当html显示为文本时),我看不到这些调用。如果有人见过这种情况 - 根据域名是否被使用而产生不同的结果 - 你能告诉我你是如何解决的吗?我已经完成了所有href和src链接,并确保它们不仅仅是服务器名称的硬编码。
我使用的是Oracle HTTP Server 11g(带有perl 5.10的Apache 2.2),以及位于Web应用程序文件中的Perl 5.8.3模块。
感谢您提供的任何帮助。
更新:应用程序使用不合规的过时HTML,并且只有在使用计算机名称时才能正确呈现,并且Internet Explorer具有"在兼容性视图中显示内部网站点"选择。如果我将完全限定的域名添加到要使用兼容性视图的站点列表中,则会正确呈现。我不确定为什么它不会这样做,因为即使使用完全限定的域名,它仍然是一个内部网站点。我尝试了meta http-equiv =" X-UA-Compatible"含量=" IE =边缘"并且内容=" IE = 5"等等,强制执行兼容模式(不希望用户必须手动进行该设置),但这并不起作用。关于强制兼容模式的更好方法的任何想法?否则,需要验证和更新大量HTML。感谢。
编辑:Apache(Oracle HTTP Server)配置如下所示:
更新:我已将默认MIME类型从文本更改为html,方法是将行DefaultType text/plain
更改为DefaultType text/html
。该网站似乎现在正在渲染,没有使用兼容性视图,但我还没有完全测试它。想知道这会带来什么影响?该网站不使用音频或视频,其图像看起来仍然很好,但用户确实将Excel文件上传到网站。感谢您提供任何帮助,警告或更好的解决方案。
ServerRoot "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}"
<IfModule !mpm_winnt_module>
#LockFile "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/accept.lock"
</IfModule>
PidFile "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/httpd.pid"
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
UseCanonicalName On
AccessFileName .htaccess
ServerTokens Prod
ServerSignature Off
TraceEnable off
HostnameLookups Off
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
AcceptMutex fcntl
LockFile "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/http_lock"
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
AcceptMutex fcntl
LockFile "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/http_lock"
</IfModule>
<IfModule mpm_winnt_module>
ThreadsPerChild 250
MaxRequestsPerChild 0
</IfModule>
# OHS Listen Port
Listen 7777
LoadModule file_cache_module "${ORACLE_HOME}/ohs/modules/mod_file_cache.so"
LoadModule vhost_alias_module "${ORACLE_HOME}/ohs/modules/mod_vhost_alias.so"
LoadModule env_module "${ORACLE_HOME}/ohs/modules/mod_env.so"
LoadModule log_config_module "${ORACLE_HOME}/ohs/modules/mod_log_config.so"
LoadModule mime_magic_module "${ORACLE_HOME}/ohs/modules/mod_mime_magic.so"
LoadModule mime_module "${ORACLE_HOME}/ohs/modules/mod_mime.so"
LoadModule negotiation_module "${ORACLE_HOME}/ohs/modules/mod_negotiation.so"
LoadModule status_module "${ORACLE_HOME}/ohs/modules/mod_status.so"
LoadModule info_module "${ORACLE_HOME}/ohs/modules/mod_info.so"
LoadModule include_module "${ORACLE_HOME}/ohs/modules/mod_include.so"
LoadModule autoindex_module "${ORACLE_HOME}/ohs/modules/mod_autoindex.so"
LoadModule dir_module "${ORACLE_HOME}/ohs/modules/mod_dir.so"
LoadModule cgi_module "${ORACLE_HOME}/ohs/modules/mod_cgi.so"
LoadModule fastcgi_module "${ORACLE_HOME}/ohs/modules/mod_fastcgi.so"
#LoadModule cgid_module "${ORACLE_HOME}/ohs/modules/mod_cgid.so"
LoadModule asis_module "${ORACLE_HOME}/ohs/modules/mod_asis.so"
LoadModule imagemap_module "${ORACLE_HOME}/ohs/modules/mod_imagemap.so"
LoadModule actions_module "${ORACLE_HOME}/ohs/modules/mod_actions.so"
LoadModule speling_module "${ORACLE_HOME}/ohs/modules/mod_speling.so"
LoadModule userdir_module "${ORACLE_HOME}/ohs/modules/mod_userdir.so"
LoadModule alias_module "${ORACLE_HOME}/ohs/modules/mod_alias.so"
LoadModule authz_host_module "${ORACLE_HOME}/ohs/modules/mod_authz_host.so"
LoadModule auth_basic_module "${ORACLE_HOME}/ohs/modules/mod_auth_basic.so"
LoadModule authz_user_module "${ORACLE_HOME}/ohs/modules/mod_authz_user.so"
LoadModule authn_file_module "${ORACLE_HOME}/ohs/modules/mod_authn_file.so"
LoadModule authn_anon_module "${ORACLE_HOME}/ohs/modules/mod_authn_anon.so"
LoadModule authn_dbm_module "${ORACLE_HOME}/ohs/modules/mod_authn_dbm.so"
LoadModule proxy_module "${ORACLE_HOME}/ohs/modules/mod_proxy.so"
LoadModule proxy_http_module "${ORACLE_HOME}/ohs/modules/mod_proxy_http.so"
LoadModule proxy_ftp_module "${ORACLE_HOME}/ohs/modules/mod_proxy_ftp.so"
LoadModule proxy_connect_module "${ORACLE_HOME}/ohs/modules/mod_proxy_connect.so"
LoadModule proxy_balancer_module "${ORACLE_HOME}/ohs/modules/mod_proxy_balancer.so"
LoadModule cern_meta_module "${ORACLE_HOME}/ohs/modules/mod_cern_meta.so"
LoadModule expires_module "${ORACLE_HOME}/ohs/modules/mod_expires.so"
LoadModule headers_module "${ORACLE_HOME}/ohs/modules/mod_headers.so"
LoadModule usertrack_module "${ORACLE_HOME}/ohs/modules/mod_usertrack.so"
LoadModule unique_id_module "${ORACLE_HOME}/ohs/modules/mod_unique_id.so"
LoadModule setenvif_module "${ORACLE_HOME}/ohs/modules/mod_setenvif.so"
LoadModule context_module "${ORACLE_HOME}/ohs/modules/mod_context.so"
LoadModule rewrite_module "${ORACLE_HOME}/ohs/modules/mod_rewrite.so"
LoadFile "${ORACLE_HOME}/perl/bin/perl510.dll"
LoadModule perl_module "${ORACLE_HOME}/ohs/modules/mod_perl.so"
<IfModule dumpio_module>
DumpIOInput On
DumpIOOutput On
DumpIOLogLevel warn
</IfModule>
<IfDefine SSL>
LoadModule ossl_module "${ORACLE_HOME}/ohs/modules/mod_ossl.so"
</IfDefine>
LoadModule onsint_module "${ORACLE_HOME}/ohs/modules/mod_onsint.so"
SetEnv PERL5LIB "${ORACLE_HOME}/perl/lib"
<IfModule !mpm_winnt_module>
User silvrstring
#Group GROUP_TEMPLATE
</IfModule>
ServerAdmin silvrstring@example.com
ServerName www.example.com
DocumentRoot "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/htdocs"
<Directory />
Options FollowSymLinks MultiViews
AllowOverride None
</Directory>
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/htdocs">
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex welcome-index.html
</Directory>
<IfModule dir_module>
DirectoryIndex index.html index.html.var
</IfModule>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
# You need to enable logio_module to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "|${ORACLE_HOME}/ohs/bin/odl_rotatelogs ${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/access_log 43200" common
<IfModule alias_module>
ScriptAlias /cgi-bin/ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin/"
</IfModule>
<IfModule cgid_module>
#
# ScriptSock: On threaded servers, designate the path to the UNIX
# socket used to communicate with the CGI daemon of mod_cgid.
#
#Scriptsock logs/cgisock
</IfModule>
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<IfModule alias_module>
Alias /OA_MEDIA/ "C:/app/Oracle/product/11.2.0/db_1/owb/wf/java/oracle/apps/fnd/wf/icons/"
Alias /OA_JAVA/ "C:/app/Oracle/product/11.2.0/db_1/owb/wf/lib/"
Alias /OA_DOC/ "C:/app/Oracle/product/11.2.0/db_1/owb/wf/doc/"
</IfModule>
ModifyEnv PERL5LIB "+C:\app\oracle\product\11.2.0\as_1\perl\5.8.3\lib;C:\app\oracle\product\11.2.0\as_1\perl\site\5.8.3\lib"
IndexOptions FancyIndexing VersionSort
Alias /icons/ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/icons/"
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/icons">
Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|pt-br|ru|tr))?(/.*)?$ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/manual$1"
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/manual">
Options MultiViews
AllowOverride None
Order allow,deny
Allow from all
<Files *.html>
SetHandler type-map
</Files>
# .tr is text/troff in mime.types!
<Files *.html.tr.utf8>
ForceType text/html
</Files>
SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|pt-br|ru|tr)/ prefer-language=$1
RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|pt-br|ru|tr)){2,}(/.*)?$ /manual/$1$2
LanguagePriority en de es fr ja ko pt-br ru tr
ForceLanguagePriority Prefer Fallback
</Directory>
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
DefaultIcon /icons/unknown.gif
ReadmeName README.html
HeaderName HEADER.html
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
DefaultLanguage en
AddLanguage ca .ca
AddLanguage cs .cz .cs
AddLanguage da .dk
AddLanguage de .de
AddLanguage el .el
AddLanguage en .en
AddLanguage eo .eo
AddLanguage es .es
AddLanguage et .et
AddLanguage fr .fr
AddLanguage he .he
AddLanguage hr .hr
AddLanguage it .it
AddLanguage ja .ja
AddLanguage ko .ko
AddLanguage ltz .ltz
AddLanguage nl .nl
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddLanguage pt .pt
AddLanguage pt-BR .pt-br
AddLanguage ru .ru
AddLanguage sv .sv
AddLanguage zh-CN .zh-cn
AddLanguage zh-TW .zh-tw
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
ForceLanguagePriority Prefer Fallback
AddCharset us-ascii.ascii .us-ascii
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3 .iso8859-3 .latin3
AddCharset ISO-8859-4 .iso8859-4 .latin4
AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
AddCharset ISO-8859-7 .iso8859-7 .grk .greek
AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
AddCharset ISO-8859-10 .iso8859-10 .latin6
AddCharset ISO-8859-13 .iso8859-13
AddCharset ISO-8859-14 .iso8859-14 .latin8
AddCharset ISO-8859-15 .iso8859-15 .latin9
AddCharset ISO-8859-16 .iso8859-16 .latin10
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5.Big5 .big5 .b5
AddCharset cn-Big5 .cn-big5
# For russian, more than one charset is used (depends on client, mostly):
AddCharset WINDOWS-1251 .cp-1251 .win-1251
AddCharset CP866 .cp866
AddCharset KOI8 .koi8
AddCharset KOI8-E .koi8-e
AddCharset KOI8-r .koi8-r .koi8-ru
AddCharset KOI8-U .koi8-u
AddCharset KOI8-ru .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-7 .utf7
AddCharset UTF-8 .utf8
AddCharset UTF-16 .utf16
AddCharset UTF-16BE .utf16be
AddCharset UTF-16LE .utf16le
AddCharset UTF-32 .utf32
AddCharset UTF-32BE .utf32be
AddCharset UTF-32LE .utf32le
AddCharset euc-cn .euc-cn
AddCharset euc-gb .euc-gb
AddCharset euc-jp .euc-jp
AddCharset euc-kr .euc-kr
AddCharset EUC-TW .euc-tw
AddCharset gb2312 .gb2312 .gb
AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
AddCharset shift_jis .shift_jis .sjis
DefaultType text/plain
<IfModule mime_module>
TypesConfig "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/mime.types"
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
AddHandler type-map var
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
BrowserMatch "^gnome-vfs" redirect-carefully
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from www.example.com
</Location>
Listen 123.456.789.012:8088
NameVirtualHost 123.456.789.012:8088
<VirtualHost 123.456.789.012:8088>
ServerAdmin silvrstring@example.com
DocumentRoot c:/www2/htdocs
# Fully qualified domain name, which is also the Full Computer Name. IE does not automatically recognize this as an intranet site, so Compatibility View is not used, and this does not render correctly.
ServerName www.example.com
# Computer name which is recognized by IE as an intranet site and uses Compatibility View mode - This works fine.
ServerAlias example
ErrorLog C:/app/oracle/product/11.2.0/as_2/Oracle_WT1/instances/instance3/config/OHS/ohs3/logs/example.com-error_log
CustomLog C:/app/oracle/product/11.2.0/as_2/Oracle_WT1/instances/instance3/config/OHS/ohs3/logs/example.com-access_log common
PerlSetEnv PERL5LIB "C:\app\oracle\product\11.2.0\as_2\Oracle_WT1\perl\lib;C:\app\oracle\product\11.2.0\as_2\Oracle_WT1\perl\site\lib;C:\www2\perl5"
PerlSetEnv ORACLE_HOME "${ORACLE_HOME}"
<IfModule alias_module>
<IfModule perl_module>
Alias /cgi/ "c:/www2/cgi/"
<Location /cgi>
SetHandler perl-script
AddHandler perl-script .pl
PerlResponseHandler ModPerl::Registry
PerlSendHeader On
Options +ExecCGI
</Location>
</IfModule>
Alias /owb/ "c:/www2/htdocs/owb/"
Alias /images/ "c:/www2/htdocs/images/"
Alias /scripts/ "c:/www2/htdocs/scripts/"
Alias /styles/ "c:/www2/htdocs/styles/"
Alias /icons/ "c:/www2/htdocs/icons/"
Alias /reports/ "c:/www2/reports/"
</IfModule>
</VirtualHost>
#
# Setup mod_perl to handle perl cgi scripts from the cgi-bin directory
#
<IfModule alias_module>
<IfModule perl_module>
Alias /perl/ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin/"
PerlOptions -SetupEnv
PerlModule ModPerl::Registry
PerlSwitches -I${ORACLE_HOME}/ohs/mod_perl/lib
<Location /perl>
PerlSetEnv PERL5LIB "${ORACLE_HOME}/perl/lib"
SetHandler perl-script
AddHandler perl-script .pl
PerlResponseHandler ModPerl::Registry
PerlSendHeader On
PerlOptions +ParseHeaders
Options +ExecCGI
</Location>
</IfModule>
</IfModule>
#
# Setup for fastcgi
#
<IfModule fastcgi_module>
Alias /fastcgi/ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/fastcgi/"
ScriptAlias /fcgi-bin/echo "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/fcgi-bin/echo.exe"
ScriptAlias /fcgi-bin/ "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/fcgi-bin/"
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/fcgi-bin/">
AllowOverride None
Options None
Order allow,deny
Allow from all
SetHandler fastcgi-script
Options +ExecCGI
<IfModule ossl_module>
SSLOptions +StdEnvVars
</IfModule>
</Directory>
</IfModule>
#Directives to setup logging via ODL
OraLogDir "${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}"
OraLogMode odl-text
OraLogSeverity WARNING:32
OraLogRotationParams S 10:70
# Set it to On to enable Audit Logs
OraAuditEnable On
<IfModule ossl_module>
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
SSLPassPhraseDialog builtin
SSLSessionCache "shmcb:${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/ssl_scache(512000)"
SSLSessionCacheTimeout 300
<IfModule mpm_winnt_module>
SSLMutex "none"
</IfModule>
<IfModule !mpm_winnt_module>
SSLMutex pthread
</IfModule>
Listen 10.100.40.197:4443
NameVirtualHost 10.100.40.197:4443
<VirtualHost 10.100.40.197:4443>
ServerAdmin silvrstring@example.com
DocumentRoot c:/www2/htdocs
# Fully qualified domain name, which is also the Full Computer Name. IE does not automatically recognize this as an intranet site, so Compatibility View is not used, and this does not render correctly.
ServerName www.example.com
# Computer name which is recognized by IE as an intranet site and uses Compatibility View mode - This works fine.
ServerAlias example
ErrorLog C:/app/oracle/product/11.2.0/as_2/Oracle_WT1/instances/instance3/config/OHS/ohs3/logs/example.com-SSLerror_log
CustomLog C:/app/oracle/product/11.2.0/as_2/Oracle_WT1/instances/instance3/config/OHS/ohs3/logs/example.com-SSLaccess_log common
PerlSetEnv PERL5LIB "C:\app\oracle\product\11.2.0\as_2\Oracle_WT1\perl\lib;C:\app\oracle\product\11.2.0\as_2\Oracle_WT1\perl\site\lib;C:\www2\perl5"
PerlSetEnv ORACLE_HOME "${ORACLE_HOME}"
<IfModule alias_module>
<IfModule perl_module>
Alias /cgi/ "c:/www2/cgi/"
<Location /cgi>
SetHandler perl-script
AddHandler perl-script .pl
PerlResponseHandler ModPerl::Registry
PerlSendHeader On
Options +ExecCGI
</Location>
</IfModule>
Alias /owb/ "c:/www2/htdocs/owb/"
Alias /images/ "c:/www2/htdocs/images/"
Alias /scripts/ "c:/www2/htdocs/scripts/"
Alias /styles/ "c:/www2/htdocs/styles/"
Alias /icons/ "c:/www2/htdocs/icons/"
Alias /reports/ "c:/www2/reports/"
</IfModule>
<IfModule ossl_module>
SSLEngine on
SSLVerifyClient None
SSLProtocol nzos_Version_1_0 nzos_Version_3_0
SSLCipherSuite SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_DES_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA
SSLCRLCheck Off
SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/test"
<FilesMatch "\.(cgi|pl|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfModule>
</VirtualHost>
</IfModule>