Write permissions to data directory

This commit is contained in:
Bob Mottram 2018-01-10 21:36:50 +00:00
parent 8651acb169
commit 28d7a0fa2f
1 changed files with 3 additions and 2 deletions

View File

@ -54,10 +54,9 @@ function secure_privatebin {
find "${pbpath}/" -type f -print0 | xargs -0 chmod 0640
find "${pbpath}/" -type d -print0 | xargs -0 chmod 0550
find "${pbdata}/" -type f -print0 | xargs -0 chmod 0640
find "${pbdata}/" -type d -print0 | xargs -0 chmod 0750
chown -R ${rootuser}:${htgroup} "${pbpath}/"
chown -R www-data:www-data ${pbdata}
}
function logging_on_privatebin {
@ -442,6 +441,8 @@ function install_privatebin {
sed -i 's|sizelimit =.*|sizelimit = 32768|g' /var/www/$PRIVATEBIN_DOMAIN_NAME/htdocs/cfg/conf.php
sed -i 's|defaultformatter =.*|defaultformatter = "markdown"|g' /var/www/$PRIVATEBIN_DOMAIN_NAME/htdocs/cfg/conf.php
mkdir -p /var/www/$PRIVATEBIN_DOMAIN_NAME/htdocs/data
secure_privatebin
systemctl restart php7.0-fpm