Apache revers proxy kibana AWS

Hi,

i'm taring to configure a revers Apache proxy for Kibana ES in AWS to be able to limit access via google oauth.
current setup: kibana.exemple.com
this configuration works

 <Location />
  AuthType openid-connect
  Require valid-user
 ProxyPass http://kibana.aws.xxxxxxxxxxxxxxxx/
 ProxyPassReverse http://kibana.aws.xxxxxxxxxxxxxxxx/
 </Location>

but ineed to put kibana in /aws/ location in the same vhost

<Location /aws/>
 AuthType openid-connect
 Require valid-user
 ProxyPass http://kibana.aws.xxxxxxxxxxxxxxxx/
 ProxyPassReverse http://kibana.aws.xxxxxxxxxxxxxxxx/
 </Location>

and access exemple.com

kibana will fail loading and get error :tired_face:

Error: Not Found
at respond (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:85132:15)
at checkRespForFailure (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:85100:7)
at http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:83738:7
at wrappedErrback (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:20902:78)
at wrappedErrback (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:20902:78)
at wrappedErrback (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:20902:78)
at http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:21035:76
at Scope.$eval (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:22022:28)
at Scope.$digest (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:21834:31)
at Scope.$apply (http://kibana.exemple.com/_plugin/kibana/index.js?_b=6103:22126:24)

will apprise any input on this on this

Thanks.