summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-10-06 18:31:55 +0200
committerjvoisin2018-10-06 18:31:55 +0200
commitafa7116a93ec63a05e4a9699d75af2c9d77f1e61 (patch)
tree981a025eec5f6f29fd41479e6bdca0c71c85937b
parent17795087e3960f49517b77c28e6aaa99d9f954fb (diff)
Improve a bit the documentation
Thanks to @joe for bringing up this issue ♥
-rw-r--r--doc/source/installation.rst14
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/source/installation.rst b/doc/source/installation.rst
index 7f8c8c8..7e999af 100644
--- a/doc/source/installation.rst
+++ b/doc/source/installation.rst
@@ -29,13 +29,21 @@ Quickstart
29 make install 29 make install
30 30
31This should install the ``snuffleupagus.so`` file in your extension directory. 31This should install the ``snuffleupagus.so`` file in your extension directory.
32The final step is adding a load directive to ``php.ini`` 32The final step is adding a load directive and to specify the location of the
33and to specify the location of the :doc:`configuration file <config>`: 33:doc:`configuration file <config>`, either in a ``conf.d/20-snuffleupagus.ini``
34file, or directly in you ``php.ini`` if you prefer:
34 35
35:: 36::
36 37
37 extension=snuffleupagus.so 38 extension=snuffleupagus.so
38 sp.configuration_file=/etc/php/conf.d/snuffleupagus.ini 39
40 # This is only an example,
41 # you can place your rules wherever you want.
42 sp.configuration_file=/etc/php/conf.d/snuffleupagus.rules
43
44
45Be careful, on some distribution, there are separate configurations for
46cli/fmp/cgi/… be sure to edit the right one.
39 47
40Upgrading 48Upgrading
41--------- 49---------