Hello,
How can I prevent access to the production app's sql-developer online tool? I have a production database with a custom domain.
I ran the following plsql code and it did disable access to the workspace admin settings, but the sql-developer page seems to still be available.
begin
apex_instance_admin.set_parameter('RESTRICT_DEV_HEADER', 'ADB-Public-Access');
commit;
end;
/
Everything else seems to be properly configured, I dont know what else todo. I followed the steps in the videos and articles similar to the one below
https://blogs.oracle.com/apex/post/adb-vanity-urls-part-2-blocking-tools
