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;' |