Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Configuring Apache and OAS - a question
I am having trouble establishing a connection between OAS and an SSL
Apache. I currently have a successful build of Apache with the OAS
module ows_module loading, and have edited httpsd.conf to include the
necessary directives.
How does Apache know to use the ows_module to connect to OAS? It seems like there's information missing as to when to use the module and how to connect.
The error returned is a 404 not found when I go to: https://devserver/fgvqa.
Any ideas? Included relevant config information below...
Thanks.
Alex Nygren
To load the ows_module via the directive:
LoadModule rewrite_module libexec/mod_rewrite.so
LoadModule ows_module
/orahome/home/dba/oas/product/4.0.8.2/ows/4.0/lib/ndwfapd.sl
(all one line)
And the ScriptAlias and Directory directives set up as below:
ScriptAlias /fgvqa/
"/orahome/home/dba/oas/product/4.0.8.2/ows/4.0/bin"
<Directory "/orahome/home/dba/oas/product/4.0.8.2/ows/4.0/bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Received on Tue Jan 08 2002 - 16:41:59 CST
![]() |
![]() |