mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-20 15:38:19 +00:00
19 lines
427 B
Bash
19 lines
427 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ $(id -u) -ne 0 ] ; then
|
||
|
|
echo "❌ Run me as root"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
if id www-data > /dev/null 2>&1 ; then
|
||
|
|
user="www-data"
|
||
|
|
elif id apache > /dev/null 2>&1 ; then
|
||
|
|
user="apache"
|
||
|
|
else
|
||
|
|
echo "❌ No PHP user found"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
cp -r ./bw-data/www/* /opt/bunkerweb/www
|
||
|
|
chown -R $user:nginx /opt/bunkerweb/www
|
||
|
|
find /opt/bunkerweb/www -type f -exec chmod 0640 {} \;
|
||
|
|
find /opt/bunkerweb/www -type d -exec chmod 0750 {} \;
|