]> git.pld-linux.org Git - packages/apache1-mod_pointer.git/commitdiff
- sample config
authorElan Ruusamäe <glen@pld-linux.org>
Fri, 15 Feb 2008 13:29:36 +0000 (13:29 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-mod_pointer.conf -> 1.1

apache1-mod_pointer.conf [new file with mode: 0644]

diff --git a/apache1-mod_pointer.conf b/apache1-mod_pointer.conf
new file mode 100644 (file)
index 0000000..4a2e3e1
--- /dev/null
@@ -0,0 +1,49 @@
+# $Id$
+#LoadModule pointer_dbm_module modules/mod_dbm_pointer.so
+#LoadModule pointer_my_module modules/mod_my_pointer.so
+#LoadModule pointer_pg_module modules/mod_pg_pointer.so
+
+# mysql> grant select on mod_pointer.* to 'pointer'@'localhost';
+# mysql> grant select on mod_pointer.* to 'pointer'@'localhost' identified by 'pointer';
+
+<IfModule mod_my_pointer.c>
+#      PointerEnable            On
+#      PointerAccountingEnable  On
+       PointerMySQLKeepAlive    On
+       PointerMySQLHost         localhost
+       PointerMySQLUser         pointer
+       PointerMySQLPassword     retniop
+       PointerMySQLDB           mod_pointer
+       PointerMySQLTable        pointers
+       PointerMySQLHostField    host
+       PointerMySQLURLField     url
+       PointerMySQLAccountField account
+       PointerFramesetFile      /usr/share/doc/apache1-mod_pointer-0.8/frameset.html
+</IfModule>
+
+<IfModule mod_pg_pointer.c>
+       PointerEnable            On
+       PointerAccountingEnable  On
+       PointerPGSQLKeepAlive    On
+       PointerPGSQLHost         localhost
+       PointerPGSQLUser         pointer
+       PointerPGSQLPassword     retniop
+       PointerPGSQLDB           pointer
+       PointerPGSQLTable        pointers
+       PointerPGSQLHostField    host
+       PointerPGSQLURLField     url
+       PointerPGSQLAccountField account
+       PointerFramesetFile      /usr/share/doc/apache1-mod_pointer-0.8/frameset.html
+</IfModule>
+
+<IfModule mod_dbm_pointer.c>
+       PointerEnable            On
+       PointerFramesetFile      /usr/share/doc/apache1-mod_pointer-0.8/frameset.html
+</IfModule>
+
+#<VirtualHost *:80>
+#      # define some pointers
+#      ServerName joke.example.org
+#      ServerAlias     comics.example.org
+#      PointerEnable   On
+#</VirtualHost>
This page took 0.050936 seconds and 4 git commands to generate.