summaryrefslogtreecommitdiffstats
path: root/gerrit-httpd
diff options
context:
space:
mode:
authorTomas Ljunggren <tomas.ljunggren@tieto.com>2012-03-29 10:53:00 +0200
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-06-20 19:25:46 +0200
commit7b0f6ba84ea9ac7e8ec966554d559c92623e76f8 (patch)
treee532a25556e86f9e87c29fda40ee11c2e1df87cf /gerrit-httpd
parent13d7a710938489476309c7d384fee0f5f91e7e44 (diff)
Add support for public anonymous access to gerrit
Patch http://forge.typo3.org/attachments/download/17860/http-anon-access.patch applied in order to allow anonymous access to gerrit. Task-number: QTQAINFRA-357 Change-Id: I830b8086329248c564a476150064fe14acf65477 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Ismo Haataja <ismo.haataja@digia.com>
Diffstat (limited to 'gerrit-httpd')
-rw-r--r--gerrit-httpd/src/main/java/com/google/gerrit/httpd/auth/container/HttpAuthModule.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/auth/container/HttpAuthModule.java b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/auth/container/HttpAuthModule.java
index daaa7e23f2..000bfa04c9 100644
--- a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/auth/container/HttpAuthModule.java
+++ b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/auth/container/HttpAuthModule.java
@@ -20,7 +20,6 @@ import com.google.inject.servlet.ServletModule;
public class HttpAuthModule extends ServletModule {
@Override
protected void configureServlets() {
- filter("/").through(HttpAuthFilter.class);
serve("/login", "/login/*").with(HttpLoginServlet.class);
}
}