Improve changelog

This commit is contained in:
Martin Lensment 2015-02-19 16:21:25 +02:00
parent 328561cb38
commit 0f3c8ba944

View file

@ -92,6 +92,11 @@ With these lines:
```
Configure webclient virtual host:
```
sudo nano /etc/apache2/sites-enabled/webclient.conf
```
Add these lines:
```
SSLVerifyClient none
SSLVerifyDepth 1
@ -115,13 +120,19 @@ sudo a2enmod headers
sudo /etc/init.d/apache2 reload
```
Configure application.yml to match the CA settings:
Configure registry application.yml to match the CA settings:
```
ca_cert_path: '/home/registry/registry/shared/ca/certs/ca.cert.pem'
ca_key_path: '/home/registry/registry/shared/ca/private/ca.key.pem'
ca_key_password: 'registryalpha'
```
Configure webclient application.yml to match the CA settings:
```
cert_path: '/home/registry/registry/shared/ca/certs/webclient.cert.pem'
key_path: '/home/registry/registry/shared/ca/private/webclient.key.pem'
```
20.01.2015
* Added dedicated mina cron:setup and mina cron:clear for manual cron management.