All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gerrit.httpd.auth.container.ConfigurationError.html Maven / Gradle / Ivy

There is a newer version: 3.11.1
Show newest version

  
    Configuration Error - Gerrit Code Review
    
  
  
    

Configuration Error

Check the HTTP server's authentication settings.

The HTTP server did not provide the username in the HEADER header when it forwarded the request to Gerrit Code Review.

If the HTTP server is Apache HTTPd, check the proxy configuration includes an authorization directive with the proper location, ensuring it ends with '/':

<VirtualHost review.example.com:80>
    ServerName review.example.com

    ProxyRequests Off
    ProxyVia Off
    ProxyPreserveHost On

    <Proxy *>
          Order deny,allow
          Allow from all
    </Proxy>

<Location /r/login/> AuthType Basic AuthName "Gerrit Code Review" Require valid-user ... </Location>
AllowEncodedSlashes On ProxyPass /r/ http://.../r/ nodecode </VirtualHost>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy