Page MenuHomePhabricator

D15887.id38268.diff
No OneTemporary

D15887.id38268.diff

diff --git a/src/applications/repository/storage/PhabricatorRepository.php b/src/applications/repository/storage/PhabricatorRepository.php
--- a/src/applications/repository/storage/PhabricatorRepository.php
+++ b/src/applications/repository/storage/PhabricatorRepository.php
@@ -2091,10 +2091,10 @@
// HTTP is not supported for Subversion.
if ($this->isSVN()) {
$has_http = false;
+ $has_https = false;
}
- // TODO: Maybe allow users to disable this by default somehow?
- $has_ssh = true;
+ $has_ssh = (bool)strlen(PhabricatorEnv::getEnvConfig('phd.user'));
$protocol_map = array(
PhabricatorRepositoryURI::BUILTIN_PROTOCOL_SSH => $has_ssh,
diff --git a/src/docs/user/userguide/diffusion_uris.diviner b/src/docs/user/userguide/diffusion_uris.diviner
--- a/src/docs/user/userguide/diffusion_uris.diviner
+++ b/src/docs/user/userguide/diffusion_uris.diviner
@@ -164,6 +164,32 @@
repository.
+Builtin Clone URIs
+==================
+
+By default, Phabricator automatically exposes and activates HTTP, HTTPS and
+SSH clone URIs by examining configuration.
+
+**HTTP**: The `http://` clone URI will be available if these conditions are
+satisfied:
+
+ - `diffusion.allow-http-auth` must be enabled.
+ - The repository must be a Git or Mercurial repository.
+ - `security.require-https` must be disabled.
+
+**HTTPS**: The `https://` clone URI will be available if these conditions are
+satisfied:
+
+ - `diffusion.allow-http-auth` must be enabled.
+ - The repository must be a Git or Mercurial repository.
+ - The `phabricator.base-uri` protocol must be `https://`.
+
+**SSH**: The `ssh://` or `svn+ssh://` clone URI will be available if tehse
+conditions are satisfied:
+
+ - `phd.user` must be configured.
+
+
Customizing Displayed Clone URIs
================================

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 18, 12:22 AM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7709120
Default Alt Text
D15887.id38268.diff (1 KB)

Event Timeline