Merge pull request #8 from killgufo/master

Drop privileges instead of running as root
This commit is contained in:
Sascha Ißbrücker 2020-02-22 11:54:47 +01:00 committed by GitHub
commit 45868068b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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