您的位置:首页 > 其它

ACM10.0与ACM10.2中WebServer的区别

2015-07-17 13:33 387 查看
Apache改为HTTPServer

在ACM10.0,WebServer的名字叫Apache

在ACM10.2,WebServer的名字改为HTTPServer

资源认证方式

参见文件WINDCHILL_HOME/conf/extra/app-Windchill-Auth.conf

在ACM10.0, 只定义限制资源, 即不在此定义范围内的均算作可匿名访问资源

# Authenticated resources
<LocationMatch ^/+Windchill/+app(;.*)?>
AuthzLDAPAuthoritative off
AuthName "Windchill"
AuthType Basic
AuthBasicProvider Windchill-AdministrativeLdap Windchill-EnterpriseLdap
require valid-user
</LocationMatch>
... ...


在ACM10.2, 同时定义限制资源和匿名资源

# Authenticated resources
<LocationMatch ^/+Windchill/+(;.*)?>
AuthzLDAPAuthoritative off
AuthName "Windchill"
AuthType Basic
AuthBasicProvider Windchill-AdministrativeLdap Windchill-EnterpriseLdap
require valid-user
</LocationMatch>
... ...

# Anonymous resources
<LocationMatch ^/+Windchill/+install/+uwgm(;.*)?>
Satisfy Any
Allow from all
</LocationMatch>
... ...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: