--- a/Allura/development.ini
+++ b/Allura/development.ini
@@ -76,16 +76,30 @@
ew.extra_headers = [ ('Access-Control-Allow-Origin', '*') ]
-scm.host.ro.git = git://git.localhost$path
-scm.host.rw.git = ssh://$username@localhost:8022/scm-repo$path
+# SCM settings for local development
+scm.host.ro.git = /tmp/git$path
+scm.host.rw.git = /tmp/git$path
+# remote access varies by configuration. If you are using a vagrant VM, this should work:
+#scm.host.rw.git = ssh://vagrant@localhost:2222/tmp/git$path
+scm.host.ro.hg = /tmp/hg$path
+scm.host.rw.hg = /tmp/hg$path
+scm.host.ro.svn = file:///tmp/svn$path/
+scm.host.rw.svn = file:///tmp/svn$path/
+
+# SCM settings for chroot + ldap configuration. See Allura/docs/scm_host.rst
+# scm.host.ro.git = git://git.localhost$path
+# scm.host.rw.git = ssh://$username@localhost:8022/scm-repo$path
+# scm.host.ro.hg = http://hg.localhost$path
+# scm.host.rw.hg = ssh://$username@localhost:8022/scm-repo$path
+# scm.host.ro.svn = http://svn.localhost$path/
+# scm.host.rw.svn = svn+ssh://localhost:8022/scm-repo$path/
+
+# SCM settings for https (sorry no docs for setting these up)
+# these settings are currently required by the template, no matter what
scm.host.https.git = https://$username@localhost:8022/scm-repo$path
scm.host.https_anon.git = https://localhost:8022/scm-repo$path
-scm.host.ro.hg = http://hg.localhost$path
-scm.host.rw.hg = ssh://$username@localhost:8022/scm-repo$path
scm.host.https.hg = https://$username@localhost:8022/scm-repo$path
scm.host.https_anon.hg = https://localhost:8022/scm-repo$path
-scm.host.ro.svn = http://svn.localhost$path/
-scm.host.rw.svn = svn+ssh://localhost:8022/scm-repo$path/
scm.host.https.svn = https://localhost:8022/scm-repo$path/
scm.host.https_anon.svn = https://localhost:8022/scm-repo$path/