bunkerized-nginx/examples/php-cookie-flags/setup-docker.sh
2023-10-02 11:05:15 +01:00

11 lines
189 B
Bash
Executable file

#!/bin/bash
if [ "$(id -u)" -ne 0 ] ; then
echo "❌ Run me as root"
exit 1
fi
chown -R 33:101 ./www
find ./www -type f -exec chmod 0640 {} \;
find ./www -type d -exec chmod 0750 {} \;