Commit 48dc08f3dfbe45b7f555b116c78ff5a068b484e5
Exists in
master
and in
18 other branches
Merge pull request #70 from colab/fix_colab_service
Fix gunicorn on colab service
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
misc/lib/systemd/system/colab.service
... | ... | @@ -7,7 +7,7 @@ EnvironmentFile=-/etc/sysconfig/colab |
7 | 7 | PermissionsStartOnly=true |
8 | 8 | ExecStartPre=/usr/bin/mkdir -p /var/lock/colab |
9 | 9 | ExecStartPre=/usr/bin/chown -R colab:colab /var/lock/colab |
10 | -ExecStart=/usr/lib/colab/bin/gunicorn colab.wsgi:application --config="/etc/colab/gunicorn.py" | |
10 | +ExecStart=/usr/lib/colab/bin/gunicorn colab.wsgi:application --config=/etc/colab/gunicorn.py | |
11 | 11 | Restart=on-failure |
12 | 12 | |
13 | 13 | [Install] | ... | ... |