Injecting the Core server command line parameters via file
(Created page with "In the applications put a file named App_Data/CommandLineOverride.xml This file - if found - will be read as xml and used as parameters. Example of valid input: <root>...")
 
No edit summary
Line 8: Line 8:
   <arg>nohttps</arg>
   <arg>nohttps</arg>
   <arg>host=localhost</arg>
   <arg>host=localhost</arg>
   <arg>iis=<nowiki>https://localhost/TKDebug</nowiki></arg>
   <arg>iis=<nowiki>https://localhost/TKDebug</nowiki></arg> // probably the only param you send for IIS hosting
  </root>
  </root>
The file is practical since it will enable you to just unzip a fresh version of the server software into the old location - and this will will stay untouched - and the server is ready to start with these settings
The file is practical since it will enable you to just unzip a fresh version of the server software into the old location - and this will will stay untouched - and the server is ready to start with these settings

Revision as of 15:49, 22 November 2023

In the applications put a file named

App_Data/CommandLineOverride.xml

This file - if found - will be read as xml and used as parameters.

Example of valid input:

<root>
  <arg>port=5020</arg>
  <arg>nohttps</arg>
  <arg>host=localhost</arg>
  <arg>iis=https://localhost/TKDebug</arg> // probably the only param you send for IIS hosting 
</root>

The file is practical since it will enable you to just unzip a fresh version of the server software into the old location - and this will will stay untouched - and the server is ready to start with these settings

This page was edited 83 days ago on 02/10/2024. What links here