mirror of
https://github.com/luzifer-docker/rtmp-record.git
synced 2024-11-09 23:20:03 +00:00
8 lines
169 B
Bash
Executable file
8 lines
169 B
Bash
Executable file
#!/usr/local/bin/dumb-init /bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Ensure nginx can work with the /data dir
|
|
chown -R http /data
|
|
chgrp -R http /data
|
|
|
|
exec nginx -g "daemon off;"
|