How to restrict Access to my app by ip?

Please open a ticket as we may need to add special configuration on the webserver level. After configuration applied you may use the following example in the DocumentRoot of your domain or sub domain:

If you have a path with sensitive data that you don't want to be public, you can restrict the path to only be accessible by your own IP address, using an .htaccess file.

Create the .htaccess file in the path you'd like to protect.
Add this code, where you'd replace 1.2.3.4 with your own IP.


<Limit GET POST>
       order deny,allow
       deny from all
       allow from 1.2.3.4
</Limit>
<Limit PUT DELETE>
       order deny,allow
       deny from all
</Limit>
  • 0 Kasutajad peavad seda kasulikuks
Kas see vastus oli kasulik?

Seotud artiklid

How to create an Oracle Wallet?

In order to secure your domain you need to the following:  We complete all necessary...

Can I use my domain name with Apex?

Absolutely, you will have full ftp/sftp access to the server as well.

Do you support SSL/https with APEX Hosting package?

Yes, we do. We can create temporary ssl certificate and when you are ready for a production you...

How do I send e-mail messages from PL/SQL?

Please follow this greate example: below: (http://www.orafaq.com/scripts/plsql/smtp.txt) rem...

How can I access APEX if I don't have domain name yet?

You can access APEX and develop your application even if you don't have domain name yet....