From c780b12b747953a460e37f2b82125d79e4a24158 Mon Sep 17 00:00:00 2001 From: Andrea Mistrali Date: Wed, 7 Aug 2024 08:17:12 +0200 Subject: [PATCH] Gunicorn access log format --- gunicorn.conf.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index a5fd202..265074e 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -11,7 +11,7 @@ preload_app = True # logconfig = "app/logging/production.ini" logconfig = "app/logging/production.ini" -# access_log_format = "%(h)s %(l)s %(t)s %(r)s %(s)s %(b)s %(f)s %(a)s" +access_log_format = "%(h)s %(l)s %(t)s %(r)s %(s)s %(b)s %(f)s %(a)s" # Log to stdout. accesslog = "-" errorlog = "-" diff --git a/pyproject.toml b/pyproject.toml index 4242e75..78f3277 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hsman" -version = "0.9.8" +version = "0.9.9" description = "Flask Admin webui for Headscale" authors = ["Andrea Mistrali "] license = "BSD"