Can somebody help me to configure nginx? Ive set it up already, but the web.config is this:
Can somebody help me with it?Code:<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^([^.]*)$" ignoreCase="false" />
<action type="Rewrite" url="/Application/LightShot.php" />
<conditions>
<add input="{QUERY_STRING}" pattern="/game/*" negate="true" />
<add input="{QUERY_STRING}" pattern="/habbo-imaging/*" negate="true" />
<add input="{QUERY_STRING}" pattern="/banner/*" negate="true" />
</conditions>
</rule>
<rule name="Imported Rule 2">
<match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
</rule>
<rule name="RequestBlockingRule1" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions>
<add input="{URL}" pattern="/Application/*" />
</conditions>
<action type="CustomResponse" statusCode="404" statusReason="File or directory not found." statusDescription="The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable." />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.net>
<mailSettings>
<smtp from="noreply@hxbbo.net">
<network host="localhost" />
</smtp>
</mailSettings>
</system.net>
</configuration>

