prod install docs: Make minor fixes and edits.

This commit is contained in:
Rishi Gupta 2016-07-14 15:01:55 -07:00 committed by Tim Abbott
parent 29673411df
commit d34000b211
2 changed files with 7 additions and 6 deletions

View File

@ -44,7 +44,7 @@ need to do some additional setup documented in the `settings.py` template:
instructions around `GOOGLE_OAUTH2_CLIENT_ID` and `GOOGLE_CLIENT_ID`.
* For Email authentication, you will need to follow the configuration
instructions for outgoing SMTP from Django. You can use `manage.py
instructions for outgoing SMTP from Django. You can use `./manage.py
send_test_email username@example.com` to test whether you've
successfully configured outgoing SMTP.

View File

@ -42,11 +42,12 @@ These instructions should be followed as root.
sudo apt-get install -y git bc openssl
git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt
cd /opt/letsencrypt
letsencrypt-auto certonly --standalone
./letsencrypt-auto certonly --standalone
# Now symlink the certificates to make them available where Zulip expects them.
ln -s /etc/letsencrypt/live/your_domain/privkey.pem /etc/ssl/private/zulip.key
ln -s /etc/letsencrypt/live/your_domain/fullchain.pem /etc/ssl/certs/zulip.combined-chain.crt
# Replace YOUR_DOMAIN with your domain name.
ln -s /etc/letsencrypt/live/YOUR_DOMAIN/privkey.pem /etc/ssl/private/zulip.key
ln -s /etc/letsencrypt/live/YOUR_DOMAIN/fullchain.pem /etc/ssl/certs/zulip.combined-chain.crt
```
If you already had a webserver installed on the system (e.g. you
@ -80,8 +81,8 @@ These instructions should be followed as root.
`/etc/zulip/settings.py`. Be sure to fill in all the mandatory
settings, enable at least one authentication mechanism, and do the
configuration required for that authentication mechanism to work.
See the section on "Authentication" below for more detail on
configuring authentication mechanisms.
See the [section on Authentication](https://zulip.readthedocs.io/en/latest/prod-auth-first-login.html)
for more detail on configuring authentication mechanisms.
(5) Run
```