NCIOCPL / clinical-trials-search-print

Print service for clinical trial search
0 stars 1 forks source link

Enabler: Explicitly allow unknown file extensions to be downloaded #81

Closed blairlearn closed 2 years ago

blairlearn commented 2 years ago

Title of Enabler

During the v1.0.0 colo deployment, it was discovered that the colo IIS instance has different default restrictions on content serving than the on-premises servers. Copying the requestFiltering section from the wcms-cde-config allows CTS.Print to serve the same print pages.

Add this to the <system.webServer> section of the web.config file:

<security>
    <requestFiltering allowDoubleEscaping="true" allowHighBitCharacters="true">
        <fileExtensions allowUnlisted="true" />
        <verbs allowUnlisted="true" />
    </requestFiltering>
</security>

ESTIMATE TBD

Resources:

Prerequisites

Sub-Tasks

Notes