diff options
| author | 2019-10-22 05:17:12 -0400 | |
|---|---|---|
| committer | 2019-10-22 11:17:12 +0200 | |
| commit | d7f888392678d711478ed64f4a52f43021d143af (patch) | |
| tree | b8feaed52fa8515c04d1db9be746d51637e00a3b /docs/en/admins/08_FeedUpdates.md | |
| parent | c1acf196c6565b34c534487920a4340e154b3b92 (diff) | |
Docs update (#2164)
* Update Readme.conf
Add information in Readme.conf to hopefully stop bug reports about intended behavior.
* Update README.md
Co-Authored-By: pattems <patrick@crandol.com>
* Update README.md
Co-Authored-By: pattems <patrick@crandol.com>
* Update README.md
Co-Authored-By: pattems <patrick@crandol.com>
* Update README.md
Co-Authored-By: pattems <patrick@crandol.com>
* Update Readme
* Update Documentation Section
* Add main Documentation link near top of Document
* Make Documentation header a link
* Fix spelling mistake I didn't catch
* Apply suggestions from code review
Co-Authored-By: pattems <patrick@crandol.com>
* Changes per Frenzie comments
* Move non-disclaiming disclaimer
* English Admin Documentation Update
* Add Backup section
* Update wording in Index
* Move Footnotes to End
* Move Footnote
* Add content for todos
* Fix typos
* Fix a bunch of typos
* Remove a duplicated file (forgotten during dev merge)
* Improve the documentation a bit
Diffstat (limited to 'docs/en/admins/08_FeedUpdates.md')
| -rw-r--r-- | docs/en/admins/08_FeedUpdates.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/en/admins/08_FeedUpdates.md b/docs/en/admins/08_FeedUpdates.md new file mode 100644 index 000000000..61672a65a --- /dev/null +++ b/docs/en/admins/08_FeedUpdates.md @@ -0,0 +1,19 @@ +# Setting Up Automatic Feed Updating + +FreshRSS updating is controlled by a script located at `./app/actualize_script.php`. Knowing this, we can create a Cron job to launch the update script. + +**Note:** the update script will not fetch feeds more often than every twenty minutes, so there's no sense in setting the Cron job to run anymore often than that. + +You will need to check the Cron documentation for your specific distribution ([Debian/Ubuntu](https://help.ubuntu.com/community/CronHowto), [Red Hat/Fedora/CentOS](https://fedoraproject.org/wiki/Administration_Guide_Draft/Cron), [Slackware](https://docs.slackware.com/fr:slackbook:process_control?#cron), [Gentoo](https://wiki.gentoo.org/wiki/Cron), [Arch Linux](https://wiki.archlinux.org/index.php/Cron)...) to insure you set the Cron job correctly. + +It's advisable that you run the Cron job as your Web server user (often `www-data`). + +## Example on Debian/Ubuntu +To run the updater script every hour, and 10 minutes past the hour: + +Run `sudo crontab -e` and copy the following line into the crontab: +``` +10 * * * * www-data php -f /usr/share/FreshRSS/app/actualize_script.php > /tmp/FreshRSS.log 2>&1 +``` + +This crontab example, of course, assumes that FreshRSS is installed in `/usr/share/FreshRSS`; if you've installed it somewhere else, be sure to correct the path in your crontab entry. |
