Skip to content
Snippets Groups Projects
Commit 28d7a0fa authored by Bob Mottram's avatar Bob Mottram
Browse files

Write permissions to data directory

parent 8651acb1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment