Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rootsecdev committed Apr 18, 2021
1 parent b607023 commit 33dda61
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions M365 E5/BannedPasswordProtection/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,25 @@ Register your Azure AD forest.
```
Register-AzureADPasswordProtectionForest -AccountUpn '[email protected]'
```

Here is how to add proxy auth if your Password protection proxy servers are sitting behind a corporate proxy.

Create a AzureADPasswordProtectionProxy.exe.config file in the %ProgramFiles%\Azure AD Password Protection Proxy\Service folder.

```
<configuration>
<system.net>
<defaultProxy enabled="true">
<proxy bypassonlocal="true"
proxyaddress="http://yourhttpproxy.com:8080" />
</defaultProxy>
</system.net>
</configuration>
```

If your proxy listens to something other than port 8080 then you will need to do this:

```
Set-AzureADPasswordProtectionProxyConfiguration –StaticPort <portnumber>
```

0 comments on commit 33dda61

Please sign in to comment.