We app is terminated automatically at Windows server
+1
−2
I've my go app the is running a web API and working smoothly at my laptop.
I read this and completed the IIS setup using a config file:
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://localhost:9000/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
And copied the compiled file at the same location, but once I gone for the url I got nothing, and once I run the .exe
file I got it terminated quickly!
Any idea how to be able to run this execuatble file at MS server.
3 comment threads