|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
现在,也有了从事软件工程的想法,在经过了一个月的PHP培训学习之后,发现其实软件工程并没有想像中的那么难。apache Apache用户认证办法汇总
一.根基的Apache用户认证办法:
若对某一目次下的文件如/home/ftp/pub需求做到用户认证,则在httpd.conf中到场上面的行
<>
options indexes followsymlinks
allowoverride authconfig
order allow,deny
allow from all
<>
用在目次/home/ftp/pub下放文件.htaccess,内容以下:
authname "shared files"
authtype basic
authuserfile /etc/.passwd
require valid-user
用随Apache来的法式htpasswd 生成文件/etc/.passwd,每行一个用户名:暗码
只需能供应准确的用户名和暗码对,就答应登录会见,这是针对任何地址来的恳求都请求供应用户名和暗码认证。
二.针对局部网段或地址请求认证。
若公司LAN地点网段为192.168.0.0/24,且有一防火墙专线接入Internet,外部网卡的地址为192.168.0.1/32,则如今但愿一切经由过程拨当地163经由过程防火墙上的apache反向代办署理向LAN上的另外一WWW办事器会见时需求认证,而当地LAN上的用户不需认证。可以在httpd.conf中放入:
〈Directory /home/ftp/pub>
Options Indexes FollowSymLinks
AllowOverride AuthConfig
order deny,allow
deny from 192.168.0.1
〈/Directory>
且在/home/ftp/pub/.htaccess中放入:
AuthName "shared files"
AuthType Basic
AuthUserFile /etc/.passwd
require valid-user
satisfy any
三.对统一目次及其下的子目次有分歧的权限,仅某些人可以存取一目次下的子目次。
若有一目次/home/ftp/pub/sales,有三个用户user1,user2,user3都需求用户名和暗码进入/home/ftp/pub,但仅user1,user2能进入/home/ftp/pub/sales.则放上面的行到httpd.conf
〈Directory /home/ftp/pub>
Options Indexes
AllowOverride AuthConfig
order allow,deny
allow from all
〈/Directory>
〈Directory /home/ftp/pub/sales>
Options Indexes
AllowOverride AuthConfig
order allow,deny
allow from all
〈/Directory>
且看/home/ftp/pub/.htaccess为:
AuthName "shared files"
AuthType Basic
AuthUserFile /etc/.passwd
require valid-user
且看/home/ftp/pub/sales/.htaccess
AuthName "shared files"
AuthType Basic
AuthUserFile /etc/.passwd
AuthGroupFile /etc/.salesgroup
require group manager
且文件/etc/.passwd内容为:
user1:passwd1
user2:passwd2
user3:passwd3
且文件/etc/.salesgroup内容为:
manager: user1 user2
兴趣可能会慢慢消亡,所以适当培养兴趣会激发自己无线的乐趣,有了乐趣,编程有啥难的。 |
|