self-hosted/nginx/entrypoint.sh
2022-02-04 05:53:18 +01:00

9 lines
203 B
Bash

#!/bin/bash
mediaowner=$(ls -ld /html | awk '{print $3}')
echo "Current /html owner is $mediaowner"
if [ "$mediaowner" != "www-data" ]
then
chown -R www-data:www-data /html
fi
nginx -g "daemon off;"