Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You can configure compression through your <code>web.config</code> file as follows:</p> <pre><code>&lt;system.webServer&gt; &lt;urlCompression doStaticCompression="true" doDynamicCompression="true" /&gt; &lt;/system.webServer&gt; </code></pre> <p>You can find documentation of this configuration element at <a href="http://www.iis.net/ConfigReference/system.webServer/urlCompression" rel="noreferrer">iis.net/ConfigReference</a>. This is the equivalent of:</p> <ol> <li>Opening Internet Information Services (IIS Manager)</li> <li>Navigating through the tree-view on the left until you reach the virtual directory you wish to modify</li> <li>Selecting the appropriate virtual directory so that the title of the right-hand pane becomes the name of said virtual directory.</li> <li>Choosing "Compression" under "IIS" in the right-hand pane</li> <li>Ticking both options and choosing "Apply" under "Actions" on the far right.</li> </ol> <p>Note: <em>(As pointed out in the comments)</em> You need to ensure that Http Dynamic Compression is installed otherwise setting <code>doDynamicCompression="true"</code> will not have any effect. The quickest way to do this is:</p> <ol> <li>Start > Type <code>optionalfeatures</code> (this is the quickest way to get to the "Turn Windows Features on or off" window)</li> <li>Navigate to Internet Information Services > World Wide Web Services > Performance Features in the "Windows Features" treeview</li> <li>Ensure "Dynamic Content Compression" is ticked</li> <li>Click "Ok" and wait whilst Windows installs the component</li> </ol>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload