Hi,
We are developing apex application and we want to configure SSL.
Here is details
Oracle XE (10g) database
EPG
APEX 4.2
Downloaded and Installed Apache2 (OpenSSL)
Generated key for Open SSL
Generated Certificate
Modified the httpd.conf and SSL.conf
When we type ‘mydomain.com’, the URL is redirecting to ‘https://mydomine/apex/f?p=100:1’. But the page is not loading (Unable to connect).
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 ^/(.*) [
%{HTTP_HOST}...] [NC,R,L]
RewriteRule / [
%{HTTP_HOST}...] [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 [
localhost:8080...]
ProxyPassReverse /i [
localhost:8080...]
ProxyPass / [
localhost:8080...]
ProxyPassReverse / [
localhost:8080...]
</IfModule>
</VirtualHost>
I have also included KEY and Certificate in SSL.conf.
I have followed below links -
[
davidghedini.blogspot.fi...]
i tried this one too
[
liberidu.com...]
Can any one help on this.
Thanks & Regards
Sairam