4 lines
87 B
Bash
4 lines
87 B
Bash
#!/bin/sh
|
|
# Run nginx in foreground (s6 will supervise it)
|
|
exec nginx -g 'daemon off;'
|