summaryrefslogtreecommitdiff
path: root/doc/source/installation.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/installation.rst')
-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---------