Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to configure Oracle XE with Apache and Open SSL ?

Status
Not open for further replies.

sairamapex

Programmer
Dec 20, 2013
1
0
0
Hi,
We are using reverse proxy to EPG and data base is up and running.
as i posted earlier,
the url is redirecting but page is not loading.
when we type 'mydomain.com' it is redirecting to ‘Apache started and running.
here is more details -
Oracle XE (10g) database
EPG
APEX 4.2
Apache2 (OpenSSL)
Generated certificate using Symantec

Here is my modification to HTTPD.conf --
<VirtualHost *:80>
ServerAdmin admin@domine.com
DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"
ServerName apex-win.domine.com
ErrorLog logs/error_log

<IfModule !mod_rewrite.c>
LoadModule rewrite_module modules/mod_rewrite.so
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine on
ReWriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) [NC,R,L]
RewriteRule / [NC,R,L]
</IfModule>

<IfModule !proxy_module.c>
LoadModule proxy_module modules/mod_proxy.so
</IfModule>

<IfModule proxy_module.c>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /i ProxyPassReverse /i ProxyPass / ProxyPassReverse / </IfModule>
</VirtualHost>
I have also included KEY and Certificate in SSL.conf.

Thanks & Regards
Sairam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top