diff --git a/apps/nginx/conf.d/default.conf b/apps/nginx/conf.d/default.conf
index 67f53e3..7e84c9c 100644
--- a/apps/nginx/conf.d/default.conf
+++ b/apps/nginx/conf.d/default.conf
@@ -28,6 +28,13 @@ server {
# This application is simply proxy-passed without any authentication
index index.html index.htm;
+ }
+ location /gm-tools {
+ auth_request /vouch/validate;
+ auth_request_set $auth_resp_x_vouch_user $upstream_http_x_vouch_user;
+ # This application is simply proxy-passed without any authentication
+ index index.html index.htm;
+
}
include /etc/nginx/conf.d/apps-enabled/*.conf;