From 48bdf1eb63daf6989a99a641484f55983dff3a81 Mon Sep 17 00:00:00 2001 From: Dawa Ometto Date: Thu, 5 Feb 2026 14:48:21 +0100 Subject: [PATCH] Fix nginx reverse proxy configuration I passed in the wrong parameters to the `uusrc.general.nginx_reverse_proxy`. Fix as per the documentation: https://utrechtuniversity.github.io/researchcloud-items/playbooks/reverse_proxy.html --- playbook.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/playbook.yml b/playbook.yml index fd8f19d..64fe1bc 100644 --- a/playbook.yml +++ b/playbook.yml @@ -19,8 +19,9 @@ - role: openwebui - role: uusrc.general.nginx_reverse_proxy vars: - location: / - auth: sram - proxy_pass: http://localhost:3000 - proxy_set_header: X-Remote-User-Mail $username@localhost - + nginx_reverse_proxy_locations: + - name: openwebui + location: / + auth: sram + proxy_pass: http://localhost:3000 + # proxy_set_header: "X-Remote-User-Mail $username@localhost"