@Anthony_G_Cyphers
when you issue the script
systemctl start <APPSERVICENAME>
how do you add the --secureport parameter to the xojo web app ?
if I remember correctly, you would add the parameters in the service file. As an example, for systemd:
[Unit]
Description=MyWebApp
[Service]
ExecStart=/home/user/appname --secureport=1234
[Install]
WantedBy=default.target
You may, however, need to create an arguments file. Plenty of resources out there covering these topics for Linux to help you along with the more advanced stuff that I don’t provide in that guide or immediately recall.
1 Like