aboutsummaryrefslogtreecommitdiff
path: root/docs/setup.rst
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-01-04 00:25:42 +0100
committerMarcin Kuzminski <marcin@python-works.com>2011-01-04 00:25:42 +0100
commit7bebcd7450fc467be6881d80a2114e6629c439a8 (patch)
tree0844e2992919c77aa0e796abb4cfe04dd0afaa3c /docs/setup.rst
parent05a6574796aa7ec8c5a95036d4e6f41a55519fa1 (diff)
docs: changelog + setup update
--HG-- branch : beta
Diffstat (limited to 'docs/setup.rst')
-rw-r--r--docs/setup.rst25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/setup.rst b/docs/setup.rst
index 038d6222..eaa0bf4c 100644
--- a/docs/setup.rst
+++ b/docs/setup.rst
@@ -50,6 +50,31 @@ You are ready to use rhodecode, to run it simply execute
anonymous, permissions settings. As well as edit more advanced options on
users and repositories
+Using RhodeCode with SSH
+------------------------
+
+RhodeCode repository structures are kept in directories with the same name
+as the project, when using repository groups, each group is a a subdirectory.
+This will allow You to use ssh for accessing repositories quite easy. There
+are some exceptions when using ssh for accessing repositories.
+
+You have to make sure that the webserver as well as the ssh users have unix
+permission for directories. Secondly when using ssh rhodecode will not
+authenticate those requests and permissions set by the web interface will not
+work on the repositories accessed via ssh. There is a solution to this to use
+auth hooks, that connects to rhodecode db, and runs check functions for
+permissions.
+
+TODO: post more info on this !
+
+if Your main directory (the same as set in RhodeCode settings) is set to
+for example `\home\hg` and repository You are using is `rhodecode`
+
+The command runned should look like this::
+ hg clone ssh://user@server.com/home/hg/rhodecode
+
+Using external tools such as mercurial server or using ssh key based auth is
+fully supported.
Setting up Whoosh full text search
----------------------------------