ฉันกำลังพยายามปรับใช้ไฟล์ แอปพลิเคชันทดสอบความเร็วเครือข่ายแบบคงที่. IIS จำเป็นต้องประพฤติเช่น การกำหนดค่า Nginx นี้.
ทุกอย่างทำงานได้ดี แต่ฉันต้องส่ง 200 แทน 405 เมื่อเรียกใช้การทดสอบการอัปโหลด (คำขอ POST ไปยังไฟล์แบบคงที่)
กำลังมองหา ISS ที่เทียบเท่าเช่น Nginx "error_page 405 =200"
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".webmanifest" mimeType="application/manifest+json" />
<mimeMap fileExtension="." mimeType="application/octet-stream" />
</staticContent>
<urlCompression doStaticCompression="false" />
<httpProtocol>
<customHeaders>
<add name="Cache-Control" value="no-store, no-cache, no-transform, must-revalidate" />
</customHeaders>
</httpProtocol>
<caching enabled="false" enableKernelCache="false" />
<security>
<requestFiltering>
<verbs>
<add verb="POST" allowed="true" />
<add verb="GET" allowed="true" />
</verbs>
<fileExtensions>
<add fileExtension="." allowed="true" />
</fileExtensions>
<alwaysAllowedUrls>
</alwaysAllowedUrls>
<requestLimits maxAllowedContentLength="2147483647"/>
</requestFiltering>
</security>
</system.webServer>
</configuration>