#
# Copyright (C) 2003, 2004 Bojan Smojver, Rexursive
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, either version 2.1 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see .
#
#
# mod_unique_id is required for session keeping in mod_spin
#
LoadModule unique_id_module modules/mod_unique_id.so
#
# mod_spin template language and a bridge into C APIs
#
LoadModule spin_module modules/mod_spin.so
#
# Example configuration of mod_spin
#
#
# AddHandler spin-template .sm
# AddOutputFilter SPIN-TEMPLATE .sm
# AddType text/html .sm
# DirectoryIndex index.sm
# SpinApplication /usr/local/libexec/spinapps/spinapp.so
# SpinAppInit rxv_spin_init # Default
# SpinAppPrepare rxv_spin_prepare # Default
# SpinAppService rxv_spin_service # Default
# SpinAppConfig /usr/local/etc/spinapps/spinapp.xml
# SpinStore file:/var/tmp/mod_spin
# SpinStore sqlite3:/var/tmp/mod_spin/store.db
# SpinStore mysql:dbname=spintest,flags=CLIENT_FOUND_ROWS
# SpinStore pgsql:dbname=spintest
# SpinStoreTable spinstore # Default
# SpinCookie SpinSession
# SpinCookiePath / # Default
# SpinCookieDomain .example.com
# SpinTimeout 0 # Default
# SpinCache on # Default
# SpinConnPool on # Default
# SpinConnCount 5 # Default
# SpinSalt # No default
#