]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - doc/Server-configuration.md
Bump version to v0.8.1
[github/shaarli/Shaarli.git] / doc / Server-configuration.md
CommitLineData
992af0b9
V
1#Server configuration
2*Example virtual host configurations for popular web servers*
3
4- [Apache](#apache)[](.html)
992af0b9
V
5- [Nginx](#nginx)[](.html)
6
7## Prerequisites
5409ade2 8### Shaarli
992af0b9
V
9* Shaarli is installed in a directory readable/writeable by the user
10* the correct read/write permissions have been granted to the web server _user and/or group_
11* for HTTPS / SSL:
12 * a key pair (public, private) and a certificate have been generated
13 * the appropriate server SSL extension is installed and active
14
5409ade2 15### HTTPS, TLS and self-signed certificates
992af0b9
V
16Related guides:
17* [How to Create Self-Signed SSL Certificates with OpenSSL](http://www.xenocafe.com/tutorials/linux/centos/openssl/self_signed_certificates/index.php)[](.html)
18* [How do I create my own Certificate Authority?](https://workaround.org/certificate-authority)[](.html)
5409ade2
A
19* Generate a self-signed certificate (will trigger browser warnings) with apache2: `make-ssl-cert generate-default-snakeoil --force-overwrite` will create `/etc/ssl/certs/ssl-cert-snakeoil.pem` and `/etc/ssl/private/ssl-cert-snakeoil.key`
20
21### Proxies
22If Shaarli is served behind a proxy (i.e. there is a proxy server between clients and the web server hosting Shaarli), please refer to the proxy server documentation for proper configuration. In particular, you have to ensure that the following server variables are properly set:
23- `X-Forwarded-Proto`;
24- `X-Forwarded-Host`;
25- `X-Forwarded-For`.
26
27See also [proxy-related](https://github.com/shaarli/Shaarli/issues?utf8=%E2%9C%93&q=label%3Aproxy+) issues.[](.html)
992af0b9
V
28
29## Apache
30### Minimal
31```apache
32<VirtualHost *:80>
33 ServerName shaarli.my-domain.org
34 DocumentRoot /absolute/path/to/shaarli/
35</VirtualHost>
36```
37### Debug - Log all the things!
38This configuration will log both Apache and PHP errors, which may prove useful to identify server configuration errors.
39
40See:
41* [Apache/PHP - error log per VirtualHost](http://stackoverflow.com/q/176) (StackOverflow)[](.html)
5409ade2 42* [PHP: php_value vs php_admin_value and the use of php_flag explained](https://ma.ttias.be/php-php_value-vs-php_admin_value-and-the-use-of-php_flag-explained/)[](.html)
992af0b9
V
43
44```apache
45<VirtualHost *:80>
46 ServerName shaarli.my-domain.org
47 DocumentRoot /absolute/path/to/shaarli/
48
49 LogLevel warn
50 ErrorLog /var/log/apache2/shaarli-error.log
51 CustomLog /var/log/apache2/shaarli-access.log combined
52
53 php_flag log_errors on
54 php_flag display_errors on
55 php_value error_reporting 2147483647
56 php_value error_log /var/log/apache2/shaarli-php-error.log
57</VirtualHost>
58```
59
60### Standard - Keep access and error logs
61```apache
62<VirtualHost *:80>
63 ServerName shaarli.my-domain.org
64 DocumentRoot /absolute/path/to/shaarli/
65
66 LogLevel warn
67 ErrorLog /var/log/apache2/shaarli-error.log
68 CustomLog /var/log/apache2/shaarli-access.log combined
69</VirtualHost>
70```
71
72### Paranoid - Redirect HTTP (:80) to HTTPS (:443)
73See [Server-side TLS](https://wiki.mozilla.org/Security/Server_Side_TLS#Apache) (Mozilla).[](.html)
74
75```apache
76<VirtualHost *:443>
77 ServerName shaarli.my-domain.org
78 DocumentRoot /absolute/path/to/shaarli/
79
80 SSLEngine on
5409ade2 81 SSLCertificateFile /absolute/path/to/the/website/certificate.pem
992af0b9
V
82 SSLCertificateKeyFile /absolute/path/to/the/website/key.key
83
84 <Directory /absolute/path/to/shaarli/>
85 AllowOverride All
86 Options Indexes FollowSymLinks MultiViews
87 Order allow,deny
88 allow from all
89 </Directory>
90
91 LogLevel warn
92 ErrorLog /var/log/apache2/shaarli-error.log
93 CustomLog /var/log/apache2/shaarli-access.log combined
94</VirtualHost>
95<VirtualHost *:80>
96 ServerName shaarli.my-domain.org
97 Redirect 301 / https://shaarli.my-domain.org
98
99 LogLevel warn
100 ErrorLog /var/log/apache2/shaarli-error.log
101 CustomLog /var/log/apache2/shaarli-access.log combined
102</VirtualHost>
103```
104
3cc8c898
A
105### .htaccess
106
107Shaarli use `.htaccess` Apache files to deny access to files that shouldn't be directly accessed (datastore, config, etc.). You need the directive `AllowOverride All` in your virtual host configuration for them to work.
108
109**Warning**: If you use Apache 2.2 or lower, you need [mod_version](https://httpd.apache.org/docs/current/mod/mod_version.html) to be installed and enabled.[](.html)
110
992af0b9
V
111## LightHttpd
112
113## Nginx
114### Foreword
115Nginx does not natively interpret PHP scripts; to this effect, we will run a [FastCGI](https://en.wikipedia.org/wiki/FastCGI) service, to which Nginx's FastCGI module will proxy all requests to PHP resources.[](.html)
116
117Required packages:
118- [nginx](http://nginx.org)[](.html)
119- [php-fpm](http://php-fpm.org) - PHP FastCGI Process Manager[](.html)
120
121Official documentation:
122- [Beginner's guide](http://nginx.org/en/docs/beginners_guide.html)[](.html)
123- [ngx_http_fastcgi_module](http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html)[](.html)
124- [Pitfalls](http://wiki.nginx.org/Pitfalls)[](.html)
125
126Community resources:
127- [Server-side TLS (Nginx)](https://wiki.mozilla.org/Security/Server_Side_TLS#Nginx) (Mozilla)[](.html)
128- [PHP configuration examples](http://kbeezie.com/nginx-configuration-examples/) (Karl Blessing)[](.html)
129
130### Common setup
131Once Nginx and PHP-FPM are installed, we need to ensure:
132- Nginx and PHP-FPM are running using the _same user and group_
133- both these user and group have
134 - `read` permissions for Shaarli resources
135 - `execute` permissions for Shaarli directories _AND_ their parent directories
136
137On a production server:
138- `user:group` will likely be `http:http`, `www:www` or `www-data:www-data`
139- files will be located under `/var/www`, `/var/http` or `/usr/share/nginx`
140
141On a development server:
142- files may be located in a user's home directory
143- in this case, make sure both Nginx and PHP-FPM are running as the local user/group!
144
3cc8c898 145For all following configuration examples, this user/group pair will be used:
992af0b9
V
146- `user:group = john:users`,
147
148which corresponds to the following service configuration:
149
150```ini
151; /etc/php/php-fpm.conf
152user = john
153group = users
154
155[...][](.html)
156listen.owner = john
157listen.group = users
158```
159
160```nginx
161# /etc/nginx/nginx.conf
162user john users;
163
164http {
165 [...][](.html)
166}
167```
168
3cc8c898
A
169### (Optional) Increase the maximum file upload size
170Some bookmark dumps generated by web browsers can be _huge_ due to the presence of Base64-encoded images and favicons, as well as extra verbosity when nesting links in (sub-)folders.
171
172To increase upload size, you will need to modify both nginx and PHP configuration:
173
174```nginx
175# /etc/nginx/nginx.conf
176
177http {
178 [...][](.html)
179
180 client_max_body_size 10m;
181
182 [...][](.html)
183}
184```
185
186```ini
187# /etc/php5/fpm/php.ini
188
189[...][](.html)
190post_max_size = 10M
191[...][](.html)
192upload_max_filesize = 10M
193```
194
992af0b9
V
195### Minimal
196_WARNING: Use for development only!_
197
198```nginx
199user john users;
200worker_processes 1;
201events {
202 worker_connections 1024;
203}
204
205http {
206 include mime.types;
207 default_type application/octet-stream;
208 keepalive_timeout 20;
209
210 index index.html index.php;
211
212 server {
213 listen 80;
214 server_name localhost;
215 root /home/john/web;
216
217 access_log /var/log/nginx/access.log;
218 error_log /var/log/nginx/error.log;
219
220 location /shaarli/ {
221 access_log /var/log/nginx/shaarli.access.log;
222 error_log /var/log/nginx/shaarli.error.log;
223 }
224
225 location ~ (index)\.php$ {
226 fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
227 fastcgi_index index.php;
228 include fastcgi.conf;
229 }
230 }
231}
232```
233
234### Modular
235The previous setup is sufficient for development purposes, but has several major caveats:
236- every content that does not match the PHP rule will be sent to client browsers:
237 - dotfiles - in our case, `.htaccess`
238 - temporary files, e.g. Vim or Emacs files: `index.php~`
239- asset / static resource caching is not optimized
240- if serving several PHP sites, there will be a lot of duplication: `location /shaarli/`, `location /mysite/`, etc.
241
242To solve this, we will split Nginx configuration in several parts, that will be included when needed:
243
244```nginx
245# /etc/nginx/deny.conf
246location ~ /\. {
247 # deny access to dotfiles
248 access_log off;
249 log_not_found off;
250 deny all;
251}
252
253location ~ ~$ {
254 # deny access to temp editor files, e.g. "script.php~"
255 access_log off;
256 log_not_found off;
257 deny all;
258}
259```
260
261```nginx
262# /etc/nginx/php.conf
263location ~ (index)\.php$ {
f8b936e7 264 # filter and proxy PHP requests to PHP-FPM
992af0b9
V
265 fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
266 fastcgi_index index.php;
267 include fastcgi.conf;
268}
f8b936e7
V
269
270location ~ \.php$ {
271 # deny access to all other PHP scripts
272 deny all;
273}
992af0b9
V
274```
275
276```nginx
277# /etc/nginx/static_assets.conf
278location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
279 expires max;
280 add_header Pragma public;
281 add_header Cache-Control "public, must-revalidate, proxy-revalidate";
282}
283```
284
285```nginx
286# /etc/nginx/nginx.conf
287[...][](.html)
288
289http {
290 [...][](.html)
291
292 root /home/john/web;
293 access_log /var/log/nginx/access.log;
294 error_log /var/log/nginx/error.log;
295
296 server {
297 # virtual host for a first domain
298 listen 80;
299 server_name my.first.domain.org;
300
301 location /shaarli/ {
302 access_log /var/log/nginx/shaarli.access.log;
303 error_log /var/log/nginx/shaarli.error.log;
304 }
305
3cc8c898
A
306 location = /shaarli/favicon.ico {
307 # serve the Shaarli favicon from its custom location
308 alias /var/www/shaarli/images/favicon.ico;
309 }
310
992af0b9
V
311 include deny.conf;
312 include static_assets.conf;
313 include php.conf;
314 }
315
316 server {
317 # virtual host for a second domain
318 listen 80;
319 server_name second.domain.com;
320
321 location /minigal/ {
322 access_log /var/log/nginx/minigal.access.log;
323 error_log /var/log/nginx/minigal.error.log;
324 }
325
326 include deny.conf;
327 include static_assets.conf;
328 include php.conf;
329 }
330}
331```
332
333### Redirect HTTP to HTTPS
334Assuming you have generated a (self-signed) key and certificate, and they are located under `/home/john/ssl/localhost.{key,crt}`, it is pretty straightforward to set an HTTP (:80) to HTTPS (:443) redirection to force SSL/TLS usage.
335
336```nginx
337# /etc/nginx/nginx.conf
338[...][](.html)
339
340http {
341 [...][](.html)
342
343 index index.html index.php;
344
345 root /home/john/web;
346 access_log /var/log/nginx/access.log;
347 error_log /var/log/nginx/error.log;
348
349 server {
350 listen 80;
351 server_name localhost;
352
353 return 301 https://localhost$request_uri;
354 }
355
356 server {
357 listen 443 ssl;
358 server_name localhost;
359
360 ssl_certificate /home/john/ssl/localhost.crt;
361 ssl_certificate_key /home/john/ssl/localhost.key;
362
363 location /shaarli/ {
364 access_log /var/log/nginx/shaarli.access.log;
365 error_log /var/log/nginx/shaarli.error.log;
366 }
367
3cc8c898
A
368 location = /shaarli/favicon.ico {
369 # serve the Shaarli favicon from its custom location
370 alias /var/www/shaarli/images/favicon.ico;
371 }
372
992af0b9
V
373 include deny.conf;
374 include static_assets.conf;
375 include php.conf;
376 }
377}
378```