From b9005d5852c0ea7832ebb4990216d3a3d2fb71ea Mon Sep 17 00:00:00 2001 From: x Date: Fri, 23 Jan 2026 12:40:05 +0000 Subject: [PATCH] explorer: Correct python webserver configs --- bin/explorer/python/hypercorn.toml | 2 +- bin/explorer/python/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/explorer/python/hypercorn.toml b/bin/explorer/python/hypercorn.toml index c2149e964..9abcd4be1 100644 --- a/bin/explorer/python/hypercorn.toml +++ b/bin/explorer/python/hypercorn.toml @@ -1,4 +1,4 @@ -# hypercorn --config hypercorn.toml app:app +# hypercorn --config hypercorn.toml explorer:app bind = ["unix:/run/explorer/hypercorn.sock"] workers = 8 worker_class = "asyncio" diff --git a/bin/explorer/python/nginx.conf b/bin/explorer/python/nginx.conf index cf499ff6e..a573b22c4 100644 --- a/bin/explorer/python/nginx.conf +++ b/bin/explorer/python/nginx.conf @@ -15,7 +15,7 @@ server { add_header X-XSS-Protection "1; mode=block" always; location / { - proxy_pass http://explorer + proxy_pass http://explorer; proxy_redirect off; proxy_set_header Host $host;