grandfleet Posted February 18 Posted February 18 I am interested in deploying some side projects to heliohost for C#
Ookma-Kyi Posted February 18 Posted February 18 (edited) Hi, Unfortunately@wolstech will have to create the account for you manually on Lily as there is no automatic way to do so at the moment. Just a few things to note: 1) There is no panel software on Lily so you will have to use your main account for your website, emails, etc. 2) You will have to upload your published software via FTP 3) Create a file named stopapp.txt and wait 10 minutes for your application to shut down gracefully before uploading new versions. 4) Delete stopapp.txt and create a file called startapp.txt, and wait 10 minutes for your application to restart. Sample web.config: <?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=".\<your-app-here.dll>" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" /> </system.webServer> </location> </configuration> Edited February 18 by Ookma-Kyi 1
wolstech Posted February 19 Posted February 19 Please check your PMs for information regarding your Lily account. Also, in Ookma's post above, note that stopapp.txt / startapp.txt goes directly in your home folder, not public_html, when controlling your app.
Recommended Posts