Updated Setting up CiviCRM (markdown)

Theodotos Andreou 2018-01-15 23:45:20 +02:00
parent 2792c4e630
commit 02572c55a0

@ -70,6 +70,31 @@ Then press the 'Re-check Requirements' button. If you get the green assurance th
## Post-install steps ## Post-install steps
If we click the "System Status: Error" link at the bottom of the CiviCRM page we will see these errors:
* Cron Not Running
No cron runs have been recorded.
* Configure Default Mailbox
Please configure a default mailbox for CiviMail.
* Complete Setup
Please enter your organization's name, primary address, and default FROM Email Address (for system-generated emails).
* Security Warning
The CiviCRM debug log should not be downloadable.
* Private Files Readable
Files in the data directory (/srv/webadmin/cms/sites/default/files/civicrm/upload/) should not be downloadable.
* Private Files Readable
Files in the data directory (/srv/webadmin/cms/sites/default/files/civicrm/custom/) should not be downloadable.
### Setup cron
Under the *webadmin* run `crontab -e` and add this cronjob:
```
5 * * * * php /srv/webadmin/cms/sites/all/modules/civicrm/bin/cli.php -u cmsadmin -p MyDrupalAdminPass -e Job -a execute
```
### Restrict access to private files ### Restrict access to private files
Add the following configuration in */etc/nginx/sites-available/cms*: Add the following configuration in */etc/nginx/sites-available/cms*: