2016-06-29 3 views

답변

0

아판 정의에 의해 인트라넷은 조직 내부의 사용자 만 액세스 할 수 있습니다. 모든 인증 된 사용자 및 특정 그룹에 의해 나머지 (예를 들어 http://site/secret/에 의해 홈페이지에 액세스 할 수 있도록해야하는 경우에만 다음에 대한 role based authorization을 참조하십시오. 예를 들어,이

<system.webServer> 
    <security> 
     <authorization> 
      <allow users="*" /> 
      <deny users="?" /> 
     </authorization> 
    </security> 
</system.webServer> 
<location path="secret"> 
    <system.webServer> 
     <security> 
      <authorization> 
       <deny users="*" /> 
       <allow roles="DomainName\WindowsSecretGroup" /> 
      </authorization> 
     </security> 
    </system.webServer> 
</location> 
같이 수행 할 수 있습니다