diff options
| author | 2016-11-05 10:23:56 +0100 | |
|---|---|---|
| committer | 2016-11-05 10:23:56 +0100 | |
| commit | 28bb2813f3121a7c992eba279d0c566269d619aa (patch) | |
| tree | 8172b8d3f9116f48a9bd74bc6b3cd57919fa7434 | |
| parent | 6fe45f1541e154e8dc02346b3ea85a44d9a50ebe (diff) | |
| parent | 0fd107638d64416cb613c61133c3bb8b8a32515d (diff) | |
Merge pull request #1356 from Alkarex/doc-access-rights-update
Document access-rights for Web updates
| -rw-r--r-- | README.fr.md | 5 | ||||
| -rw-r--r-- | README.md | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/README.fr.md b/README.fr.md index 8efa983e3..2587c2d8f 100644 --- a/README.fr.md +++ b/README.fr.md @@ -85,13 +85,16 @@ sudo git checkout -b dev origin/dev # Mettre les droits d’accès pour le serveur Web sudo chown -R :www-data . && sudo chmod -R g+r . && sudo chmod -R g+w ./data/ +# Si vous souhaitez permettre les mises à jour par l'interface Web (inutile pour les mises à jour par git) +sudo chmod -R g+w . + # Publier FreshRSS dans votre répertoire HTML public sudo ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS # Naviguez vers http://example.net/FreshRSS pour terminer l’installation # (Si vous le faite depuis localhost, vous pourrez avoir à ajuster le réglage de votre adresse publique) # ou utilisez l’interface en ligne de commande -# Mettre à jour FreshRSS vers une nouvelle version +# Mettre à jour FreshRSS vers une nouvelle version par git cd /usr/share/FreshRSS sudo git pull sudo chown -R :www-data . && sudo chmod -R g+r . && sudo chmod -R g+w ./data/ @@ -85,13 +85,16 @@ 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/ +# If you would like to allow Web updates (not needed for updates with git) +sudo chmod -R g+w . + # 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 # (If you do it from localhost, you may have to adjust the setting of your public address later) # or use the Command-Line Interface -# Update to a newer version of FreshRSS +# Update to a newer version of FreshRSS with git cd /usr/share/FreshRSS sudo git pull sudo chown -R :www-data . && sudo chmod -R g+r . && sudo chmod -R g+w ./data/ |
