|
|
@@ -79,11 +79,13 @@ sudo service apache2 restart
|
|
|
cd /usr/share/
|
|
|
sudo apt-get install git
|
|
|
sudo git clone https://github.com/FreshRSS/FreshRSS.git
|
|
|
-# Set the rights so that your Web server can access the files
|
|
|
cd FreshRSS
|
|
|
-sudo chown -R :www-data .
|
|
|
-sudo chmod -R g+r .
|
|
|
-sudo chmod -R g+w ./data/
|
|
|
+
|
|
|
+# If you want to use the development version of FreshRSS
|
|
|
+sudo git checkout -b dev origin/dev
|
|
|
+
|
|
|
+# Set the rights so that your Web server can access the files
|
|
|
+sudo chown -R :www-data . && sudo chmod -R g+r . && sudo chmod -R g+w ./data/
|
|
|
# Publish FreshRSS in your public HTML directory
|
|
|
sudo ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS
|
|
|
# Navigate to http://example.net/FreshRSS to complete the installation.
|
|
|
@@ -94,9 +96,7 @@ sudo ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS
|
|
|
cd /usr/share/FreshRSS
|
|
|
sudo git reset --hard
|
|
|
sudo git pull
|
|
|
-sudo chown -R :www-data .
|
|
|
-sudo chmod -R g+r .
|
|
|
-sudo chmod -R g+w ./data/
|
|
|
+sudo chown -R :www-data . && sudo chmod -R g+r . && sudo chmod -R g+w ./data/
|
|
|
```
|
|
|
|
|
|
## Access control
|