Skip to content

Commit

Permalink
Add some error prevention to Debian/Ubuntu installation docs (FreshRS…
Browse files Browse the repository at this point in the history
…S#6290)

Reverts a minor part of <FreshRSS#2164>.
People who want to use the root can easily figure out how to do that themselves.

Fixes FreshRSS#4955.
  • Loading branch information
Frenzie authored Apr 12, 2024
1 parent 7aaed60 commit e19b8a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ sudo cli/access-permissions.sh
sudo chown www-data:www-data -R .

# Publier FreshRSS dans votre répertoire HTML public
sudo ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS
[ ! -e "/var/www/html/FreshRSS" ] && sudo ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS || echo "/var/www/html/FreshRSS existe déjà"
# 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
Expand Down
6 changes: 3 additions & 3 deletions docs/en/admins/06_LinuxInstall.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Installation on Debian 9/Ubuntu 16.04
# Installation on Debian/Ubuntu

This tutorial will give you step-by-step commands to install the latest stable release of FreshRSS with Apache and MySQL using git. It’s always recommended that you [backup your installation](05_Backup.md) before updating

Expand Down Expand Up @@ -93,10 +93,10 @@ chown www-data:www-data -R .
chown apache:www-data -R .
```

Finally, symlink the public folder to the root of your web directory
Finally, symlink the public folder to your FreshRSS directory

```sh
ln -s /usr/share/FreshRSS/p /var/www/html/
[ ! -e "/var/www/html/FreshRSS" ] && ln -s /usr/share/FreshRSS/p /var/www/html/FreshRSS || echo "/var/www/html/FreshRSS already exists"
```

## Part 3: Creating a Database for FreshRSS
Expand Down

0 comments on commit e19b8a4

Please sign in to comment.