commit | 0c815ffa9efa6ca611b64a61a80d07f96475e2c5 | [log] [tgz] |
---|---|---|
author | Dariusz Luksza <dariusz.luksza@gmail.com> | Tue Sep 19 12:04:13 2023 +0100 |
committer | Dariusz Luksza <dariusz.luksza@gmail.com> | Tue Sep 19 13:55:10 2023 +0100 |
tree | 1d193c5f51196f8376c15c42f40d37a4662fb6bd | |
parent | 52d5f4f248bd00bf418cf73ad254eac6d009d102 [diff] |
Add `X-Forwarded-Host` section to the README To ensure the plugin works correctly in various network setups the section about `X-Forwarded-Host` was added to the README.md file. Change-Id: Ib27aefca39c5be6767d258145a39a2f9d0b4e7c2
Gerrit lib module to split the projects' space into virtual hosts similarly of what you would do with an HTTP Server and different domain names.
Build this module as it was a Gerrit plugin:
virtualhost
directory to Gerrit /plugins/virtualhost
bazel build plugins/virtualhost
virtualhost.jar
module is generated under /bazel-genfiles/plugins/virtualhost/
Copy virtualhost.jar
library to Gerrit /lib
and add the following two extra settings to gerrit.config
:
[gerrit] installModule = com.gerritforge.gerrit.modules.virtualhost.GuiceModule [httpd] filterClass = com.gerritforge.gerrit.modules.virtualhost.VirtualHostFilter
X-Forwarded-Host
Header:When Gerrit is hidden behind multiple service layers (eg. reverse-proxy and load balancer), it is essential to ensure the propagation from the upstream proxy of the header X-Forwarded-Host from the upstream proxy.
/etc/virtualhost.config contains the definition of the virtual hosts and the set of projects included.
Each server
section defines a virtual host and contains a set of projects included. Projects are defined using Gerrit ref-matching expressions and can be repeated multiple times to include multiple matchers.
Example to include all the projects starting with team1/
and the ones starting with the username:
[server "team1.mycompany.com"] projects = team1/* projects = ${username}/*
For all the other server names that are not defined and for SSH access, there is a special default section that lists of visible projects.
Example to include all the projects by default:
[default] projects = ^.*