]> git.immae.eu Git - github/wallabag/wallabag.git/blame - docs/en/user/installation.rst
Update documentation
[github/wallabag/wallabag.git] / docs / en / user / installation.rst
CommitLineData
e6ebb14f
NL
1Install wallabag
2================
3
4Requirements
5------------
6
eff75729 7wallabag is compatible with PHP >= 5.5, including PHP 7.
89d95cdd 8
84e3c36e
NL
9.. note::
10To install wallabag easily, we create a ``Makefile``, so you need to have the ``make`` tool.
11
7eff4736
NL
12wallabag uses a large number of PHP libraries in order to function. These libraries must be installed with a tool called Composer. You need to install it if you have not already done so and be sure to use the 1.2 version (if you already have Composer, run a ``composer selfupdate``).
13
14Install Composer:
15
16::
17
18 curl -s http://getcomposer.org/installer | php
19
20You can find specific instructions `here <https://getcomposer.org/doc/00-intro.md>`__.
21
22You'll also need the following extensions for wallabag to work. Some of these may already activated in your version of PHP, so you may not have to install all corresponding packages.
89d95cdd
TC
23
24- php-session
25- php-ctype
26- php-dom
5dfd321d 27- php-hash
89d95cdd
TC
28- php-simplexml
29- php-json
30- php-gd
31- php-mbstring
32- php-xml
33- php-tidy
34- php-iconv
35- php-curl
36- php-gettext
37- php-tokenizer
f7265b4b 38- php-bcmath
89d95cdd 39
b5fa6607 40wallabag uses PDO to connect to the database, so you'll need one of the following:
89d95cdd 41
eff75729
NL
42- pdo_mysql
43- pdo_sqlite
44- pdo_pgsql
89d95cdd 45
b5fa6607 46and its corresponding database server.
89d95cdd 47
e6ebb14f
NL
48Installation
49------------
50
bba9907d
NL
51On a dedicated web server (recommended way)
52~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
53
b5fa6607 54To install wallabag itself, you must run the following commands:
e6ebb14f
NL
55
56::
57
c1181313 58 git clone https://github.com/wallabag/wallabag.git
7c122534 59 cd wallabag && make install
e6ebb14f 60
bba9907d 61To start PHP's build-in server and test if everything did install correctly, you can do:
89d95cdd
TC
62
63::
64
7c122534 65 make run
89d95cdd
TC
66
67And access wallabag at http://yourserverip:8000
68
bba9907d 69.. tip::
7704ef5d 70
b5fa6607 71 To define parameters with environment variables, you have to set these variables with ``SYMFONY__`` prefix. For example, ``SYMFONY__DATABASE_DRIVER``. You can have a look at `Symfony documentation <http://symfony.com/doc/current/cookbook/configuration/external_parameters.html>`__.
7704ef5d 72
bba9907d
NL
73On a shared hosting
74~~~~~~~~~~~~~~~~~~~
75
b5fa6607 76We provide a package with all dependencies inside.
bba9907d
NL
77The default configuration uses SQLite for the database. If you want to change these settings, please edit ``app/config/parameters.yml``.
78
79We already created a user: login and password are ``wallabag``.
80
b5fa6607 81.. caution:: With this package, wallabag doesn't check for mandatory extensions used in the application (theses checks are made during ``composer install`` when you have a dedicated web server, see above).
bba9907d
NL
82
83Execute this command to download and extract the latest package:
84
85.. code-block:: bash
86
87 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
88
7eff4736 89You will find the `md5 hash of the latest package on our website <https://www.wallabag.org/pages/download-wallabag.html>`_.
94d1dae4 90
b5fa6607 91Now, read the following documentation to create your virtual host, then access your wallabag.
bba9907d
NL
92If you changed the database configuration to use MySQL or PostgreSQL, you need to create a user via this command ``php bin/console wallabag:install --env=prod``.
93
94Installation with Docker
7eff4736 95~~~~~~~~~~~~~~~~~~~~~~~~
bba9907d 96
e546a2d6 97We provide you a Docker image to install wallabag easily. Have a look to our repository on `Docker Hub <https://hub.docker.com/r/wallabag/wallabag/>`__ to have more information.
89d95cdd 98
bba9907d 99Command to launch container
7eff4736 100^^^^^^^^^^^^^^^^^^^^^^^^^^^
bba9907d
NL
101
102.. code-block:: bash
103
104 docker pull wallabag/wallabag
105
106Virtual hosts
107-------------
108
109Configuration on Apache
110~~~~~~~~~~~~~~~~~~~~~~~
111
112Assuming you install wallabag in the ``/var/www/wallabag`` folder and that you want to use PHP as an Apache module, here's a vhost for wallabag:
89d95cdd
TC
113
114::
115
116 <VirtualHost *:80>
117 ServerName domain.tld
118 ServerAlias www.domain.tld
119
120 DocumentRoot /var/www/wallabag/web
121 <Directory /var/www/wallabag/web>
122 AllowOverride None
123 Order Allow,Deny
124 Allow from All
125
126 <IfModule mod_rewrite.c>
127 Options -MultiViews
128 RewriteEngine On
129 RewriteCond %{REQUEST_FILENAME} !-f
130 RewriteRule ^(.*)$ app.php [QSA,L]
131 </IfModule>
132 </Directory>
133
134 # uncomment the following lines if you install assets as symlinks
135 # or run into problems when compiling LESS/Sass/CoffeScript assets
136 # <Directory /var/www/wallabag>
137 # Options FollowSymlinks
138 # </Directory>
139
140 # optionally disable the RewriteEngine for the asset directories
141 # which will allow apache to simply reply with a 404 when files are
142 # not found instead of passing the request into the full symfony stack
143 <Directory /var/www/wallabag/web/bundles>
144 <IfModule mod_rewrite.c>
145 RewriteEngine Off
146 </IfModule>
147 </Directory>
148 ErrorLog /var/log/apache2/wallabag_error.log
149 CustomLog /var/log/apache2/wallabag_access.log combined
150 </VirtualHost>
151
152After reloading or restarting Apache, you should now be able to access wallabag at http://domain.tld.
153
bba9907d
NL
154Configuration on Nginx
155~~~~~~~~~~~~~~~~~~~~~~
89d95cdd 156
b5fa6607 157Assuming you installed wallabag in the ``/var/www/wallabag`` folder, here's the recipe for wallabag :
89d95cdd
TC
158
159::
160
161 server {
162 server_name domain.tld www.domain.tld;
163 root /var/www/wallabag/web;
164
165 location / {
166 # try to serve file directly, fallback to app.php
167 try_files $uri /app.php$is_args$args;
168 }
169 location ~ ^/app\.php(/|$) {
170 fastcgi_pass unix:/var/run/php5-fpm.sock;
171 fastcgi_split_path_info ^(.+\.php)(/.*)$;
172 include fastcgi_params;
173 # When you are using symlinks to link the document root to the
174 # current version of your application, you should pass the real
175 # application path instead of the path to the symlink to PHP
176 # FPM.
177 # Otherwise, PHP's OPcache may not properly detect changes to
178 # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
179 # for more information).
180 fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
181 fastcgi_param DOCUMENT_ROOT $realpath_root;
182 # Prevents URIs that include the front controller. This will 404:
183 # http://domain.tld/app.php/some-path
184 # Remove the internal directive to allow URIs like this
185 internal;
186 }
187
188 error_log /var/log/nginx/wallabag_error.log;
189 access_log /var/log/nginx/wallabag_access.log;
190 }
191
192After reloading or restarting nginx, you should now be able to access wallabag at http://domain.tld.
cea846d4 193
bba9907d 194.. tip::
cea846d4
NL
195
196 When you want to import large file into wallabag, you need to add this line in your nginx configuration ``client_max_body_size XM; # allows file uploads up to X megabytes``.
9ddf49ba 197
8b563fc0 198Configuration on lighttpd
e546a2d6
NL
199~~~~~~~~~~~~~~~~~~~~~~~~~
200
8b563fc0 201Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe for wallabag (edit your ``lighttpd.conf`` file and paste this configuration into it):
e546a2d6
NL
202
203::
204
205 server.modules = (
8b563fc0
NL
206 "mod_fastcgi",
207 "mod_access",
208 "mod_alias",
209 "mod_compress",
210 "mod_redirect",
211 "mod_rewrite",
e546a2d6
NL
212 )
213 server.document-root = "/var/www/wallabag/web"
214 server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
215 server.errorlog = "/var/log/lighttpd/error.log"
216 server.pid-file = "/var/run/lighttpd.pid"
217 server.username = "www-data"
218 server.groupname = "www-data"
219 server.port = 80
220 server.follow-symlink = "enable"
221 index-file.names = ( "index.php", "index.html", "index.lighttpd.html")
222 url.access-deny = ( "~", ".inc" )
223 static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
224 compress.cache-dir = "/var/cache/lighttpd/compress/"
225 compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
226 include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
227 include_shell "/usr/share/lighttpd/create-mime.assign.pl"
228 include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
229 dir-listing.activate = "disable"
230
231 url.rewrite-if-not-file = (
02d10905 232 "^/([^?]*)(?:\?(.*))?" => "/app.php?$1&$2",
8b563fc0 233 "^/([^?]*)" => "/app.php?=$1",
e546a2d6
NL
234 )
235
9ddf49ba
OD
236Rights access to the folders of the project
237-------------------------------------------
238
bba9907d 239Test environment
9ddf49ba
OD
240~~~~~~~~~~~~~~~~
241
7c122534 242When we just want to test wallabag, we just run the command ``make run`` to start our wallabag instance and everything will go smoothly because the user who started the project can access to the current folder naturally, without any problem.
9ddf49ba 243
bba9907d 244Production environment
9ddf49ba
OD
245~~~~~~~~~~~~~~~~~~~~~~
246
7c122534 247As soon as we use Apache or Nginx to access to our wallabag instance, and not from the command ``make run`` to start it, we should take care to grant the good rights on the good folders to keep safe all the folders of the project.
9ddf49ba
OD
248
249To do so, the folder name, known as ``DocumentRoot`` (for apache) or ``root`` (for Nginx), has to be absolutely accessible by the Apache/Nginx user. Its name is generally ``www-data``, ``apache`` or ``nobody`` (depending on linux system used).
250
87b8461e 251So the folder ``/var/www/wallabag/web`` has to be accessible by this last one. But this could be not enough if we just care about this folder, because we could meet a blank page or get an error 500 when trying to access to the homepage of the project.
9ddf49ba
OD
252
253This is due to the fact that we will need to grant the same rights access on the folder ``/var/www/wallabag/var`` like those we gave on the folder ``/var/www/wallabag/web``. Thus, we fix this problem with the following command:
254
255.. code-block:: bash
256
257 chown -R www-data:www-data /var/www/wallabag/var
ab46a256
OD
258
259It has to be the same for the following folders
260
261* /var/www/wallabag/bin/
262* /var/www/wallabag/app/config/
263* /var/www/wallabag/vendor/
b5fa6607 264* /var/www/wallabag/data/
ab46a256
OD
265
266by entering
267
268.. code-block:: bash
269
270 chown -R www-data:www-data /var/www/wallabag/bin
271 chown -R www-data:www-data /var/www/wallabag/app/config
272 chown -R www-data:www-data /var/www/wallabag/vendor
458854f1 273 chown -R www-data:www-data /var/www/wallabag/data/
ab46a256 274
b5fa6607 275otherwise, sooner or later you will see these error messages:
ab46a256
OD
276
277.. code-block:: bash
278
279 Unable to write to the "bin" directory.
280 file_put_contents(app/config/parameters.yml): failed to open stream: Permission denied
281 file_put_contents(/.../wallabag/vendor/autoload.php): failed to open stream: Permission denied
b5fa6607
P
282
283Additional rules for SELinux
284~~~~~~~~~~~~~~~~~~~~~~~~~~~~
285
286If SELinux is enabled on your system, you will need to configure additional contexts in order for wallabag to function properly. To check if SELinux is enabled, simply enter the following:
287
288``getenforce``
289
290This will return ``Enforcing`` if SELinux is enabled. Creating a new context involves the following syntax:
291
292``semanage fcontext -a -t <context type> <full path>``
293
294For example:
295
296``semanage fcontext -a -t httpd_sys_content_t "/var/www/wallabag(/.*)?"``
297
298This will recursively apply the httpd_sys_content_t context to the wallabag directory and all underlying files and folders. The following rules are needed:
299
300+-----------------------------------+----------------------------+
301| Full path | Context |
302+===================================+============================+
303| /var/www/wallabag(/.*)? | ``httpd_sys_content_t`` |
304+-----------------------------------+----------------------------+
305| /var/www/wallabag/data(/.*)? | ``httpd_sys_rw_content_t`` |
306+-----------------------------------+----------------------------+
307| /var/www/wallabag/var/logs(/.*)? | ``httpd_log_t`` |
308+-----------------------------------+----------------------------+
309| /var/www/wallabag/var/cache(/.*)? | ``httpd_cache_t`` |
310+-----------------------------------+----------------------------+
311
312After creating these contexts, enter the following in order to apply your rules:
313
314``restorecon -R -v /var/www/wallabag``
315
316You can check contexts in a directory by typing ``ls -lZ`` and you can see all of your current rules with ``semanage fcontext -l -C``.
317
318If you're installing the preconfigured latest-v2-package, then an additional rule is needed during the initial setup:
319
320``semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/wallabag/var"``
321
322After you successfully access your wallabag and complete the initial setup, this context can be removed:
323
324::
325
326 semanage fcontext -d -t httpd_sys_rw_content_t "/var/www/wallabag/var"
327 retorecon -R -v /var/www/wallabag/var