Update git submodules

* Update openstack-ansible-repo_server from branch 'master'
  to 3d3f6102458ca7d70ce9eb8dd15e6a49c7e73505
  - Turn off absolute_redirect for nginx
    
    Nginx adds trailing slashes to the URLs ending with directories.
    So by default, when accessing http://172.29.236.101:8181/pools, nginx
    will return 301 redirect to http://172.29.236.101:8181/pools/.
    It's an absolute redirect which causes a problem when haproxy frontend
    listens on HTTPS but its backends listen on HTTP.
    In this case, when accessing https://172.29.236.101:8181/pools, nginx
    will return 301 redirect to http://172.29.236.101:8181/pools/ (http)
    that won't work.
    
    This patch changes behavior by disabling absolute_redirects, so when
    accessing https://172.29.236.101:8181/pools, nginx will return a
    redirect to relative location '/pools/' without changing protocol.
    
    Change-Id: I9e55508996d9b24437870f2f23dca5db7827fee1
This commit is contained in:
Damian Dabrowski 2023-03-16 14:05:12 +01:00 committed by Gerrit Code Review
parent 9428ac1eb7
commit 660cf5c6f1
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit b9d9ccfc8a781759f421d5c8aa1a9276295765b5
Subproject commit 3d3f6102458ca7d70ce9eb8dd15e6a49c7e73505