git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@3 2b470e98-0d58-463d-a4d8-8e2adae1ed80
18 lines
465 B
Plaintext
18 lines
465 B
Plaintext
=========================================
|
|
#httpd.conf entry: no password for for distinguished hosts
|
|
|
|
ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
|
|
<Directory "/home/httpd/cgi-bin">
|
|
AuthType Basic
|
|
AuthName "Password Required"
|
|
AuthUserFile /home/httpd/etc/passwd
|
|
Require valid-user
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from 192.168.0.207
|
|
Allow from 192.168.0.208
|
|
Satisfy any
|
|
</Directory>
|
|
|
|
=========================================
|