|
|
@@ -43,4 +43,12 @@ Since [1.8.0](https://github.com/FreshRSS/FreshRSS/releases/tag/1.8.0) release,
|
|
|
```sh
|
|
|
./cli/update_user.php --user <username> --password <password>
|
|
|
```
|
|
|
-For more information on that matter, there is a [dedicated documentation](../../cli/README.md).
|
|
|
+For more information on that matter, there is a [dedicated documentation](../../cli/README.md).
|
|
|
+
|
|
|
+## Permissions under SELinux
|
|
|
+
|
|
|
+Some Linux distribution like Fedora or RedHat Enterprise Linux have SELinux system enabled. This acts like a firewall application, so all applications cannot write/modify files under certain conditions. While installing FreshRSS, step 2 can fail if the httpd process cannot write to some data sub-directories, the following command should be executed as root :
|
|
|
+```sh
|
|
|
+semanage fcontext -a -t httpd_sys_rw_content_t '/usr/share/FreshRSS/data(/.*)?'
|
|
|
+restorecon -Rv /usr/share/FreshRSS/data
|
|
|
+```
|