Drop privileges

This commit is contained in:
Daniele Bonomi 2020-02-02 16:27:18 +01:00
parent 2ccb006d2a
commit ef1c485082
2 changed files with 6 additions and 0 deletions

View File

@ -3,10 +3,14 @@
# Create data folder if it does not exist
mkdir -p data
# Run database migration
python manage.py migrate
# Generate secret key file if it does not exist
python manage.py generate_secret_key
# Ensure the DB folder is owned by the right user
chown -R www-data: /etc/linkding/data
# Start uwsgi server
uwsgi uwsgi.ini

View File

@ -9,3 +9,5 @@ threads = 2
pidfile = /tmp/linkding.pid
vacuum=True
stats = 127.0.0.1:9191
uid = www-data
gid = www-data