Mnemosyne is a abstract distribution originally designed for ROCKLinux, but currently only support the trunk of OpenSDE.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51 lines
1.5 KiB

# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: target/mnemosyne/pkg_conf/php.conf
# Copyright (C) 2006 - 2007 The OpenSDE Project
# Copyright (C) 2002 - 2006 Alejandro Mery
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
case "$SDECFG_TRG_MNEMOSYNE_WEB" in
apache)
pkgprefix -t apache
hook_add postmake 5 "mnemosyne_php_addconf $( pkgprefix sysconfdir apache )"
mnemosyne_php_addconf() {
mkdir -p $1/conf.d
cat <<-EOT > $1/conf.d/php.conf
LoadModule php5_module modules/libphp5.so
AddHandler application/x-httpd-php .php
EOT
}
;;
lighttpd)
pkgprefix -t lighttpd
hook_add postmake 7 "mnemosyne_php_addconf $( pkgprefix sysconfdir lighttpd )"
mnemosyne_php_addconf() {
cat <<-EOT >> $root$1/conf.d/php.conf-dist
fastcgi.server = ( ".php" =>
(( "socket" => "/tmp/php-fastcgi.socket",
"bin-path" => "$bindir/php-cgi",
"max-procs" => 1,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "16",
"PHP_FCGI_MAX_REQUESTS" => "10000" ),
"bin-copy-environment" => (
"PATH", "SHELL", "USER" )
))
)
EOT
}
;;
esac