in server/src/jetbrains/buildServer/staticUIExtensions/web/StaticContentController.java [35:47]
public StaticContentController(@NotNull final AuthorizationInterceptor auth,
@NotNull final WebControllerManager web,
@NotNull final ControllerPaths paths,
@NotNull final Configuration config,
@NotNull final StaticContentCache cache) {
myPaths = paths;
myConfig = config;
myCache = cache;
final String path = paths.getResourceControllerRegistrationBase();
web.registerController(path, this);
auth.addPathNotRequiringAuth(path);
auth.addPathNotRequiringAuth("/login.jsp");
}