kcscDev/kcsc-back-end/web.config

14 lines
427 B
Plaintext
Raw Permalink Normal View History

2024-08-22 00:30:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule11" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://http://localhost:5000/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>