# systemd unit for the signaling server. # Replace INSTALL_PATH with where you extracted the project, e.g. # /opt/remote-desktop-tool/signaling-server # Save as /etc/systemd/system/signaling-server.service, then: # sudo systemctl daemon-reload # sudo systemctl enable --now signaling-server [Unit] Description=Remote Desktop Signaling Server After=network.target [Service] Type=simple WorkingDirectory=INSTALL_PATH ExecStart=/usr/bin/node server.js Restart=on-failure Environment=PORT=8080 User=www-data [Install] WantedBy=multi-user.target