Run as a service on Linux
1. Create a Custom systemd Service
[Unit]
Description=Extension Name Service
After=network.target
[Service]
User=root
WorkingDirectory=/usr/local/bin
# when using config:
# ExecStart=/usr/local/bin/super-tables-linux
# when NOT using config:
# ExecStart=/usr/local/bin/super-tables-linux –-port 443 –-cert yourdomain.crt –-key yourdomain.key
Restart=always
[Install]
WantedBy=multi-user.target
2. Give the service file the proper permissions
Last updated
Was this helpful?
