ASP.NET
Getting Started
Dependencies
Installation
To install PxModule, run the following command in the Package Manager Console
PM> Install-Package PerimeterXModule
Integration
Edit web.config
Add PerimeterX PxModule (configuration -> system.webServer level)
<modules>
<add name="PxModule" type="PerimeterX.PxModule"/>
</modules>
Add configuration section (configuration level)
<configSections>
<sectionGroup name="perimeterX">
<section
name="pxModuleConfigurationSection"
type="PerimeterX.PxModuleConfigurationSection"
/>
</sectionGroup>
...
Basic Usage Example
Add site specific configuration (configuration level)
<perimeterX>
<pxModuleConfigurationSection
enabled="true"
appId="<PX Application ID>"
apiToken="<API token>"
cookieKey="<cookie key>"
monitorMode="true"
blockingScore="100"
>
</pxModuleConfigurationSection>
</perimeterX>
Upgrading
To upgrade to the latest Enforcer version:
-
In Visual Studio, right click on the solution and Select Manage NuGet packages for solution.
-
Search for
perimeterxmodule
in the updates section, and update.OR
Run Install-Package PerimeterXModule
in the Package Manager Console
Your Enforcer version is now upgraded to the latest enforcer version.
For more information, contact Support .
Updated about 2 years ago
Did this page help you?