diff options
| author | 2022-01-08 21:58:55 +0100 | |
|---|---|---|
| committer | 2022-01-08 21:58:55 +0100 | |
| commit | 1acd3ab09be1b65bfd6122ee351490c3b5527bb8 (patch) | |
| tree | f11de558e7a09522a45d1c155d9707ecda6bf1eb /docs/en/admins/06_LinuxInstall.md | |
| parent | 916df412f5b6f7fb9bcfb705a3c8c23e35304410 (diff) | |
Use typographic quotes (#4133)
* Use typographic quotes
* A few fixes
* Fix
* Fix not saved
* Implement feedback
* Detail
* Revert spoken English fixes
Left for a future dedicated discussion
* More reverts
* Final reverts
* Final minor
Diffstat (limited to 'docs/en/admins/06_LinuxInstall.md')
| -rw-r--r-- | docs/en/admins/06_LinuxInstall.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/en/admins/06_LinuxInstall.md b/docs/en/admins/06_LinuxInstall.md index ab42fb992..e92fc3247 100644 --- a/docs/en/admins/06_LinuxInstall.md +++ b/docs/en/admins/06_LinuxInstall.md @@ -1,6 +1,6 @@ # Installation on Debian 9/Ubuntu 16.04 -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 +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 Please note: Commands need to be run as an administrator; either perform the following from a sudo shell (`sudo -s`) or use an administrator account. @@ -13,7 +13,7 @@ apt install apache2 a2enmod headers expires rewrite ssl ``` -Then, you have to configure Apache. You can create a file in `/etc/apache2/sites-available`, based on [our example configuration file](10_ServerConfig.md). Once you're done, create a symbolic link from this file to the `sites-enabled` folder: +Then, you have to configure Apache. You can create a file in `/etc/apache2/sites-available`, based on [our example configuration file](10_ServerConfig.md). Once you’re done, create a symbolic link from this file to the `sites-enabled` folder: ```sh ln -s /etc/apache2/sites-available/freshrss.conf /etc/apache2/sites-enabled/freshrss.conf @@ -31,7 +31,7 @@ Install the PHP module for Apache apt install libapache2-mod-php ``` -Next, we'll need to install and configure MySQL. Install MySQL components like so: +Next, we’ll need to install and configure MySQL. Install MySQL components like so: ```sh sudo apt install mysql-server mysql-client php-mysql @@ -43,8 +43,8 @@ MySQL must now be started: service mysql-server start ``` -We'll need to configure MySQL. -**Note:** As you've just installed mysql, there will be no root password; simply hit enter on the first step +We’ll need to configure MySQL. +**Note:** As you’ve just installed mysql, there will be no root password; simply hit enter on the first step ```sh mysql_secure_installation @@ -64,7 +64,7 @@ service apache2 restart ## Part 2: Installing FreshRSS -Begin by installing git, if you don't already have it installed. +Begin by installing git, if you don’t already have it installed. ```sh apt install git @@ -85,7 +85,7 @@ chown -R :www-data . sudo chmod -R g+r . ``` -We'll also need to allow the data folder to be written to, like so: +We’ll also need to allow the data folder to be written to, like so: ```sh chmod -R g+w ./data/ |
