mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
Merge pull request #8 from killgufo/master
Drop privileges instead of running as root
This commit is contained in:
commit
45868068b5
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -9,3 +9,5 @@ threads = 2
|
|||
pidfile = /tmp/linkding.pid
|
||||
vacuum=True
|
||||
stats = 127.0.0.1:9191
|
||||
uid = www-data
|
||||
gid = www-data
|
||||
|
|
Loading…
Reference in a new issue