stable, before a refactor

This commit is contained in:
Jason Jordan
2026-03-03 22:53:21 -05:00
parent 4fac3b1036
commit 942d60c3e0
66 changed files with 1321 additions and 194 deletions
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<!-- This handler is a reverse proxy that forwards all requests to the application process -->
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" requireAccess="Script" />
</handlers>
<httpPlatform
stdoutLogEnabled="true"
stdoutLogFile=".\logs\stdout.log"
startupTimeLimit="200"
processPath="C:\Ruby32-x64\bin\ruby.exe"
arguments="&quot;C:\Ruby34-x64\lib\ruby\gems\3.4.0\gems\puma-6.6.1&quot; -p 3002 -w 0"
>
<!-- Environment variable to ensure the application listens on the port provided by IIS -->
<environmentVariables />
</httpPlatform>
</system.webServer>
</configuration>