我正在尝试在我的网络上设置本地网络服务器。我希望能够从我的网络中的任何机器访问网络服务器,而无需进行身份验证。并且两个额外的域需要在没有身份验证的情况下访问它。我想在其中进行身份验证的其他所有人。到目前为止,我可以从我的网络内部访问它。并且两个额外的域可以访问我的网络服务器,但其他人只是挂起。他们没有得到认证或任何东西。
谁能告诉我我在这里做错了什么?
到目前为止,这是我的 apache 站点可用文件的一部分:
<Directory /path/to/server/>
Options Indexes FollowSymLinks -Multiviews
Order Deny,Allow
Deny from All
Allow from 192.168
Allow from localhost
Allow from domain1
Allow from domain2
AuthType Basic
AuthName "my authentication"
AuthUserFile /path/to/file
Require valid-user
Satisfy Any
AllowOverride All
<Files .htaccess>
Order Allow,Deny
Allow from All
</Files>
</Directory>