forked from City-of-Helsinki/kerrokantasi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: convert uwsgi config file to ini
- Loading branch information
Showing
4 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: ci | ||
name: CI | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[uwsgi] | ||
# Needed plugins if running against Debian uwsgi-package | ||
# python docker image cannot use that due to linker mishaps | ||
wsgi-file = kerrokantasi/wsgi.py | ||
processes = 3 | ||
#threads = 1 | ||
master = true | ||
umask = 022 | ||
reload-on-rss = 300 | ||
|
||
# Allow large image uploads | ||
#chunked-input-limit = 10485760 | ||
buffer-size = 32768 | ||
|
||
http = :8000 | ||
static-map = /static=/srv/static | ||
static-map = /media=/srv/media | ||
|
||
# Ignore write errors | ||
ignore-sigpipe = true | ||
ignore-write-errors = true | ||
disable-write-exception = true |
This file was deleted.
Oops, something went wrong.