diff --git a/config/config.yaml b/config/config.yaml deleted file mode 100644 index 70276234..00000000 --- a/config/config.yaml +++ /dev/null @@ -1,18 +0,0 @@ -debug: true - -proxy: - coll: ${COLL} - recording: true - - enable_banner: false - enable_wombat: true - -recorder: - dedup_policy: ${DEDUP_POLICY} - source_coll: live - cache: always - rollover_size: ${ROLLOVER_SIZE} - enable_put_custom_record: true - -collections: - live: $live diff --git a/config/openssl.conf b/config/openssl.conf deleted file mode 100644 index e9a4029a..00000000 --- a/config/openssl.conf +++ /dev/null @@ -1,10 +0,0 @@ -openssl_conf = openssl_init - -[openssl_init] -ssl_conf = ssl_sect - -[ssl_sect] -system_default = system_default_sect - -[system_default_sect] -Options = UnsafeLegacyRenegotiation diff --git a/config/uwsgi.ini b/config/uwsgi.ini deleted file mode 100644 index 90178e07..00000000 --- a/config/uwsgi.ini +++ /dev/null @@ -1,22 +0,0 @@ -[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 = 1000 - -processes = %(%k * 2) - -env = GEVENT_MONKEY_PATCH=1 -env = PYWB_CONFIG_FILE=/app/config.yaml -wsgi = pywb.apps.wayback -