File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32
32
- Duplicating keypoints in COCO export (https://github.com/opencv/cvat/pull/1435 )
33
33
- CVAT new UI: add arrows on a mouse cursor (< https://github.com/opencv/cvat/pull/1391 > )
34
34
- Delete point bug (in new UI) (< https://github.com/opencv/cvat/pull/1440 > )
35
+ - Fix apache startup after PC restart (https://github.com/opencv/cvat/pull/1467 )
35
36
36
37
### Security
37
38
-
Original file line number Diff line number Diff line change @@ -54,9 +54,11 @@ numprocs=1
54
54
; with docker cache. Thus it is necessary to run collectstatic here for such
55
55
; apps.
56
56
command=%(ENV_HOME)s/wait-for-it.sh db:5432 -t 0 -- bash -ic \
57
- "/usr/bin/python3 ~/manage.py migrate && \
57
+ "rm -f /tmp/cvat-server/httpd.pid && /usr/bin/python3 ~/manage.py migrate && \
58
58
/usr/bin/python3 ~/manage.py collectstatic --no-input && \
59
59
exec /usr/bin/python3 $HOME/manage.py runmodwsgi --log-to-terminal --port 8080 \
60
60
--limit-request-body 1073741824 --log-level INFO --include-file ~/mod_wsgi.conf \
61
- %(ENV_DJANGO_MODWSGI_EXTRA_ARGS)s --locale %(ENV_LC_ALL)s"
61
+ %(ENV_DJANGO_MODWSGI_EXTRA_ARGS)s --locale %(ENV_LC_ALL)s \
62
+ --server-root /tmp/cvat-server"
63
+
62
64
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
You can’t perform that action at this time.
0 commit comments