mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 21:03:47 +00:00
7 lines
124 B
Bash
7 lines
124 B
Bash
#!/bin/sh
|
|
|
|
# Start the backend server
|
|
node /backend/server.js &
|
|
|
|
# Start nginx in the foreground
|
|
exec nginx -g 'daemon off;' |