1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-04-03 12:35:44 +02:00
pywb/uwsgi.ini
Natanael Arndt 0de883eac3
Allow to configure uWSGI mount via environment variable (#926)
* Introduce UWSGI_MOUNT env var

* Add a note to the documentation.
2025-03-27 11:56:10 -07:00

35 lines
606 B
INI

[uwsgi]
if-not-env = PORT
http-socket = :8080
socket = :8081
endif =
master = true
buffer-size = 65536
die-on-term = true
if-env = VIRTUAL_ENV
venv = $(VIRTUAL_ENV)
endif =
gevent = 100
#Not available until uwsgi 2.1
#monkey-patching manually in pywb.apps.wayback
#gevent-early-monkey-patch =
# for uwsgi<2.1, set env when using gevent
env = GEVENT_MONKEY_PATCH=1
# specify config file here
env = PYWB_CONFIG_FILE=config.yaml
if-not-env = UWSGI_MOUNT
wsgi = pywb.apps.wayback
endif =
# Set the path to which pywb should be mounted
if-env = UWSGI_MOUNT
mount = %(_)
manage-script-name = true
endif =