Oracle Apex configure SSL
Oracle Application Express enable SSL (http to https)
Goto Application Server
$ORACLE_HOME/opmn/conf/opmn.xml
find for ssl-disabled
change to ssl-enabled
Save opmn.xml
Add the entry in httpd.conf file.
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/pls/apex/(.*)$ https://example.com/pls/apex/$1 [L,R]

No comments:
Post a Comment