Skip to content

Instantly share code, notes, and snippets.

@mnakka9
Created October 5, 2022 15:11
Show Gist options
  • Select an option

  • Save mnakka9/60cb8183e47853cc3a3194a31146afeb to your computer and use it in GitHub Desktop.

Select an option

Save mnakka9/60cb8183e47853cc3a3194a31146afeb to your computer and use it in GitHub Desktop.
Angular universal IIS Config
<xml version="1.0" encoding="utf-8">
<configuration>
<system.webServer>
<handlers>
<add name="iisnode" path="main.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<rule name="DynamicContent">
<match url="/*" />
<action type="Rewrite" url="main.js"/>
</rule>
</rules>
</rewrite>
<customErrors mode="Off" />
<httpErrors errorMode="Detailed"></httpErrors>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment