I have configured apache authentication for one of my domain. I want that apache should not prompt for password for local ips and for *.myexternaldomain.com. Currently with the following configuration it is working fine for only myexternaldomain.com.
Order deny,allow
Deny from all
AllowOverride All
AuthType Basic
AuthName "Webyog Gateway Authentication"
AuthUserFile /etc/httpd/httpdpasswd
Require user webyog
Allow from myexternaldomain.com 192.168.1.0/24
Satisfy Any
How can I allow wild card domains like *.myexternaldomain.com in the above configuration ?
Warm Regards
Supratik