CONTEXT
I am running an Apache/2.4.38 (Debian) Server. Here are my
/var/www/html/.htaccess
AuthType Basic AuthName "Restricted Content" AuthUserFile /etc/apache2/.htpasswd Require valid-user and my /etc/apache2/apache2.conf
<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> When using this, users have to enter a login and password to access the website. All fine !
And when I use AllowOverride None, nobody has to enter anything.
<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> QUESTION
How can I allow access from a certain IP (or domain name) such that users do not have to enter login/pass ? Ideally, I would like to allow access from a certain domain (https://mxtoolbox.com/SuperTool.aspx?action=a%3abiosoft-ipcms.fr&run=toolpage) only.