aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2020-08-16 19:15:11 +0200
committernodiscc <nodiscc@gmail.com>2020-09-12 14:31:45 +0200
commitd8847936d4fb3faa698bee1acabf99eb7f5268ed (patch)
treee16e7fe1b66b49364bced903b7ab8c980f7ce82a /doc
parent9417f1337eb518bd303017369fc66a074c1963bc (diff)
downloadShaarli-d8847936d4fb3faa698bee1acabf99eb7f5268ed.tar.gz
Shaarli-d8847936d4fb3faa698bee1acabf99eb7f5268ed.tar.zst
Shaarli-d8847936d4fb3faa698bee1acabf99eb7f5268ed.zip
doc: server configuration: add reminder to change the example domain name
Diffstat (limited to 'doc')
-rw-r--r--doc/md/Server-configuration.md4
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
111The 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/`: 111The 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)
115sudo mkdir -p /var/www/shaarli.mydomain.org/ 115sudo 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
125sudo apt update 125sudo apt update
126sudo apt install apache2 libapache2-mod-php php-json php-mbstring php-gd php-intl php-curl php-gettext 126sudo 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)
129sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf 129sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf
130``` 130```
131 131