RAG: Retrieval-Augmented Generation approaches. This is for my personal reference.
Halim, a Georgia Tech graduate Senior Database Engineer/Data Architect based in Atlanta, USA, is an Oracle OCP DBA and Developer, Certified Cloud Architect Professional, and OCI Autonomous Database Specialist. With extensive expertise in database design, configuration, tuning, capacity planning, RAC, DG, scripting, Python, APEX, and PL/SQL, he combines technical mastery with a passion for innovation. Notably, Halim secured 16th place worldwide in PL/SQL Challenge Cup Playoff on the year 2010.
Will write steps for Installing Oracle Apex in AWS EC2 server
Will write a details about this course and guidelines to complete successfully
Can not access to oracle apex. faced below issue when tried to login from ORDS on development mode.
403 Forbidden
The request cannot be processed because this resource does not support Cross Origin Sharing requests, or the request Origin is not authorized to access this resource. If ords is being reverse proxied, ensure the front end server is propagating the host name, for mod_proxy ensure ProxyPreserveHost oi set ON.
Solution:
Application ORDS is configured to access only with https://, so we have added below parameter in ORDS defaults.xml (ords/conf/ords/defaults.xml) configuration file and restarting ORDS. it resolved the issue.
<entry key="security.forceHTTPS">true</entry>
Application configured with ORDS in Weblogic server.
Just FYI-
From ORDS 20.4 onwards we can use this below parameter for cross origin sharing request
<entry key="security.externalSessionTrustedOrigins">http://example.com,https://example.com:8443</entry>
For more info-
Cross-Origin Resource Sharing Feature