diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/md/Server-configuration.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/md/Server-configuration.md b/doc/md/Server-configuration.md index 7da7995d..bb488ef0 100644 --- a/doc/md/Server-configuration.md +++ b/doc/md/Server-configuration.md | |||
@@ -111,7 +111,7 @@ If you don't want to rely on a certificate authority, or the server can only be | |||
111 | The following examples assume a Debian-based operating system is installed. On other distributions you may have to adapt details such as package installation procedures, configuration file locations, and webserver username/group (`www-data` or `httpd` are common values). In these examples we assume the document root for your web server/virtualhost is at `/var/www/shaarli.mydomain.org/`: | 111 | The following examples assume a Debian-based operating system is installed. On other distributions you may have to adapt details such as package installation procedures, configuration file locations, and webserver username/group (`www-data` or `httpd` are common values). In these examples we assume the document root for your web server/virtualhost is at `/var/www/shaarli.mydomain.org/`: |
112 | 112 | ||
113 | ```bash | 113 | ```bash |
114 | # create the document root | 114 | # create the document root (replace with your own domain name) |
115 | sudo mkdir -p /var/www/shaarli.mydomain.org/ | 115 | sudo mkdir -p /var/www/shaarli.mydomain.org/ |
116 | ``` | 116 | ``` |
117 | 117 | ||
@@ -125,7 +125,7 @@ You can install Shaarli at the root of your virtualhost, or in a subdirectory as | |||
125 | sudo apt update | 125 | sudo apt update |
126 | sudo apt install apache2 libapache2-mod-php php-json php-mbstring php-gd php-intl php-curl php-gettext | 126 | sudo apt install apache2 libapache2-mod-php php-json php-mbstring php-gd php-intl php-curl php-gettext |
127 | 127 | ||
128 | # Edit the virtualhost configuration file with your favorite editor | 128 | # Edit the virtualhost configuration file with your favorite editor (replace the example domain name) |
129 | sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf | 129 | sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf |
130 | ``` | 130 | ``` |
131 | 131 | ||