Write permissions to data directory
This commit is contained in:
parent
8651acb169
commit
28d7a0fa2f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue