diff options
author | varac <varacanero@zeromail.org> | 2015-08-11 11:11:02 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-08-11 11:13:58 +0200 |
commit | 83ec5213964584e942767251cc6f0c101a1a1e52 (patch) | |
tree | 182100d43af7a1e0017489705090670dc6d4672d | |
parent | 883b2eadb7b28756978c4009cb9f92e7177a9dba (diff) |
improved README.md
- bundler install instructions: now that debian lenny is out, we
can simply assume noone is using debian oldstable anymore on an
development box, so we can simplify the instructions
- simplify the submodule installation
- fix cert paths and token in the config file example
-rw-r--r-- | README.md | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -49,17 +49,11 @@ these instructions: ### Install system requirements - sudo apt-get install git ruby1.9.3 rubygems couchdb - sudo gem install bundler - -On Debian Wheezy or later, there is a Debian package for bundler, so you -can alternately run ``sudo apt-get install bundler``. + sudo apt-get install git ruby1.9.3 rubygems couchdb bundler ### Download source - git clone git://leap.se/leap_web - cd leap_web - git submodule update --init + git clone --recursive git://leap.se/leap_web ### Install required ruby libraries @@ -83,9 +77,9 @@ There are a few values you should make sure to modify: admins: ["myusername","otherusername"] domain: example.net force_ssl: true - secret_token: "4be2f60fafaf615bd4a13b96bfccf2c2c905898dad34..." - client_ca_key: "/etc/ssl/ca.key" - client_ca_cert: "/etc/ssl/ca.crt" + secret_token: "4be2f60fafaf615bd4a13b96bfccf2c2c905898dad34" + client_ca_key: "./test/files/ca.key" + client_ca_cert: "./test/files/ca.key" ca_key_password: nil * `admins` is an array of usernames that are granted special admin |