Initial changes
This commit is contained in:
parent
5b58c0d9bc
commit
66a6af4cc3
3 changed files with 9 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
config.json
|
||||
__pycache__
|
||||
venv/
|
||||
|
|
|
@ -4,8 +4,8 @@ module = wsgi:app
|
|||
master = true
|
||||
processes = 5
|
||||
|
||||
socket = twitfix.sock
|
||||
socket = /tmp/twitfix.sock
|
||||
chmod-socket = 660
|
||||
vacuum = true
|
||||
|
||||
die-on-term = true
|
||||
die-on-term = true
|
||||
|
|
|
@ -3,11 +3,11 @@ Description=Init file for twitfix uwsgi instance
|
|||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=robin
|
||||
Group=robin
|
||||
WorkingDirectory=/home/robin/twitfix
|
||||
Environment="PATH=/home/robin/twitfix/twitfixenv/bin"
|
||||
ExecStart=/home/robin/twitfix/twitfixenv/bin/uwsgi --ini twitfix.ini
|
||||
User=dylan
|
||||
Group=dylan
|
||||
WorkingDirectory=/home/dylan/BetterTwitFix
|
||||
Environment="PATH=/home/dylan/BetterTwitFix/venv/bin"
|
||||
ExecStart=/home/dylan/BetterTwitFix/venv/bin/uwsgi --ini twitfix.ini
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=multi-user.target
|
||||
|
|
Loading…
Reference in a new issue