How can I set htpasswd prompt for everyone who want to access some server except people from LAN (192.168.0.*) ?

Thanks for the answers !

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

someting like this :

                    Order allow,deny
                    AuthType Basic
                    AuthName "Only for administrator"
                    AuthUserFile /etc/apache2/passwords/admin.pwd
                    AuthGroupFile /dev/null
                    Require valid-user
                    Allow from 192.168.10 10.8.0 182.243.107.122 82.122.29.22
                    Satisfy Any

:D

link|improve this answer
Ok, works fine ! Instead of your Allow from 192.168.10 10.8.0 ... it should be Allow from 192.168. – hsz Jan 29 '10 at 11:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.