From f86d22ec54ee80cc54ae80edc0bbad8e419ba95c Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Tue, 6 Aug 2019 14:19:32 -0500 Subject: [service https] T1443: reset defaults on 'delete service https api' --- src/conf_mode/https.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/conf_mode/https.py') diff --git a/src/conf_mode/https.py b/src/conf_mode/https.py index dae51dd7d..e1e81eef1 100755 --- a/src/conf_mode/https.py +++ b/src/conf_mode/https.py @@ -55,10 +55,13 @@ server { server_name {{ l_addr }}; {% endfor %} - location / { + # proxy settings for HTTP API, if enabled; 503, if not + location ~ /(retrieve|configure) { {% if api %} proxy_pass http://localhost:{{ api.port }}; proxy_buffering off; +{% else %} + return 503; {% endif %} } -- cgit v1.2.3