This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
<httpRuntime relaxedUrlToFileSystemMapping="true"/> | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var regex = new Regex("(ew?e)+"); | |
var match = regex.Match("eweee"); | |
var value = match.Groups[1].Value; // What is this value? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wrapper.java.additional.20=-XX:+UseConcMarkSweepGC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initial Java Heap Size (in MB) | |
wrapper.java.initmemory=1024 | |
# Maximum Java Heap Size (in MB) | |
wrapper.java.maxmemory=1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
... | |
<httpRuntime relaxedUrlToFileSystemMapping="true"/> | |
</system.web> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.webServer> | |
... | |
<httpErrors errorMode="Custom" existingResponse="Replace"> | |
<remove statusCode="403"/> | |
<error statusCode="403" responseMode="ExecuteURL" | |
path="/path/to/Error/Forbidden"/> | |
<remove statusCode="404"/> | |
<error statusCode="404" responseMode="ExecuteURL" | |
path="/path/to/Error/NotFound"/> | |
<remove statusCode="500"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Response.ClearHeaders(); | |
Response.ClearContent(); | |
Response.StatusCode = (int)HttpStatusCode.InternalServerError; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
... | |
<customErrors mode="On"/> | |
</system.web> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.webServer> | |
... | |
<httpErrors errorMode="Custom" existingResponse="Auto"> | |
<remove statusCode="403" subStatusCode="14"/> | |
<error statusCode="403" subStatusCode="14" | |
responseMode="ExecuteURL" path="/path/to/Error/Forbidden"/> | |
<remove statusCode="404"/> | |
<error statusCode="404" responseMode="ExecuteURL" | |
path="/path/to/Error/NotFound"/> | |
</httpErrors> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Response.ClearHeaders(); | |
Response.ClearContent(); | |
Response.StatusCode = (int)HttpStatusCode.InternalServerError; | |
Response.TrySkipIisCustomErrors = true; |
OlderNewer