feat(lstwrapper): added a c# wrapper so we can run on windows server and get ssl

this will also allow us to still use docker
This commit is contained in:
2025-07-14 21:55:25 -05:00
parent cb9e8e1107
commit d097988dfd
8 changed files with 159 additions and 0 deletions

15
LstWrapper/web.config Normal file
View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet"
arguments=".\LstWrapper.dll"
stdoutLogEnabled="true"
stdoutLogFile=".\logs\stdout"
hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>