mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-04-21 21:47:58 +00:00
10 lines
189 B
Bash
Executable file
10 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 {} \;
|