From 93c581090beb11c9c0e1efcf53a04334fd049eba Mon Sep 17 00:00:00 2001 From: Nicola Tarocco Date: Fri, 9 Jul 2021 16:08:25 +0200 Subject: [PATCH] Fix QR code redirection for calculator-cern * Adds the missing URL args to the Nginx configuration when redirecting from /calculator to /calculator-cern. * closes #177 --- app-config/nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-config/nginx/nginx.conf b/app-config/nginx/nginx.conf index e2e45836..fb69f77a 100644 --- a/app-config/nginx/nginx.conf +++ b/app-config/nginx/nginx.conf @@ -99,7 +99,7 @@ http { } location /calculator { - return 302 /calculator-cern; + return 302 /calculator-cern$is_args$args; } location /calculator-cern {