##// END OF EJS Templates
http: set REMOTE_USER and REMOTE_HOST http variables....
http: set REMOTE_USER and REMOTE_HOST http variables. - some Mercurial extensions rely on those, and pure hgweb set this so to be compatible we set those too - fixes #5376

File last commit:

r34:640a4096 default
r269:413e285e default
Show More
release.nix
15 lines | 164 B | text/x-nix | NixLexer
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
}:
let
vcsserver = import ./default.nix {
inherit
doCheck
pkgs;
};
in {
build = vcsserver;
}