5、防止用户访问指定的文件
系统中有一些文件是不适宜提供给WWW用户的,如:.htaccess、htpasswd、*.pl等,可以用<Files>;达到这个目的:
<Files .htaccess>;
order allow,deny
deny from all
</Files>;
用户访问控制三个.htaccess文件、.htpasswd和.htgroup(用于用户授权) ,为了安全起见,应该防止用户浏览其中内容,可以在httpd.conf中加入以下内容阻止用户对其进行访问:
<Files ~”/.ht”>;
Order deny, allow
Deny from all
</Files>;
这样这三个文件就不会被用户访问了。
<Location /prices/internal.html>;
order deny,allow
deny from all
allow from .domain.com
</Location>;
如果你要授于相应权限的机器没有公开的域名,请在你的/etc/hosts文件中,将其IP地址映射到某个指定的名称,然后在Location中对其进行设置,否则该选项是不起作用的。
7、只接受来自特定链接的访问
例如,只让所有来自 http://www.sina.com.cn/* 的链接的用户进入此目录,由其它链接来的访客都不得进入; " * "表示此网站底下所有的链接。其中的 http://www.sina.com.cn/* 也可以是:http://202.106.184.200/* 或是指定文件 http://www.sina.com.cn/news.html
.htaccess文件的内容如下:
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName ExampleAllowFromSpecificURL
AuthType Basic
<Limit GET>;
order deny,allow
deny from all
referer allow from http://www.sina.com.cn/*
</Limit>;
各位老大能不能告诉我,苹果中的APACHE的配置怎么改呀?如何去改呀,怎么改才能实现我第一行的要求,能达到身份验证的目的呀?作者: Aki 时间: 2004-03-23 13:51 标题: 请苹果的粉丝们救我,一个APACHE的问题 虽然不太理解为什么你要在苹果上来做这件简单的事情,如果说你需要一个把Apache应用接口(Enhanced Apache API (EAPI)),OpenSSL和mod_ssl模块都编译进去的Apache服务器。苹果电脑已经在Mac OS X上提供了必要的元素,而且你可以在Mac OS X的标准安装中找到这些产品的文档:
<IfModule mod_ssl.c>;
# Some MIME-types for downloading Certificates and CRLs
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
# inintial Directives for SSL
SSLProtocol all -SSLv3
SSLPassPhraseDialog builtin
SSLSessionCache dbm:/var/run/ssl_scache
SSLSessionCacheTimeout 300
SSLMutex file:/var/run/ssl_mutex
SSLRandomSeed startup builtin
SSLLog /var/log/httpd/ssl_engine_log
SSLLogLevel info
##
## SSL Virtual Host Context
##
<VirtualHost 127.0.0.1:80>;
#Just to keep things sane...
DocumentRoot "/Library/WebServer/Documents"
ServerName 127.0.0.1
ServerAdmin bobdavis@mac.com
SSLEngine off
</VirtualHost>;
<VirtualHost 127.0.0.1:443>;
# General setup for the virtual host
DocumentRoot "/Library/WebServer/Documents"
#ServerName has to match the server you entered into the CSR
ServerName 127.0.0.1
ServerAdmin bobdavis@mac.com
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
SSLProtocol all -SSLv3
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
# Path to your certificates and private key
SSLCertificateFile /etc/httpd/ssl.key/server.crt
SSLCertificateKeyFile /etc/httpd/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">;
SSLOptions +StdEnvVars
</Files>;
<Directory "/Library/WebServer/CGI-Executables">;
SSLOptions +StdEnvVars
</Directory>;
# correction for browsers that don't always handle SSL connections well
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# Per-Server Logging:
# The home of a custom SSL log file. Use this when you want a
# compact non-error SSL logfile on a virtual host basis.
CustomLog /var/log/httpd/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>;
</IfModule>;
现在,可以保存文件(CTRL-x CTRL-s)并关闭emacs(CTRL-x CTRL-c)了。
还有很多指示符可以添加到机器的SSL配置文件中来进行功能配置,包括使用扩展的日志功能,对使用过的密码进行限制,以及加密的级别等等。在Mac OS X提供的Apache文档(/Library/Documentation/Services/apache_mod_ssl/index.html)或者位于http://www.modssl.org/的在线文档中,都有全面的描述。作者: Fox*Oracle 时间: 2004-04-05 12:11 标题: 请苹果的粉丝们救我,一个APACHE的问题 哇~~