mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
some files required for new rpm build
This commit is contained in:
parent
db8599726e
commit
0677e339f5
52
doc/rpm-build/apache.conf
Normal file
52
doc/rpm-build/apache.conf
Normal file
@ -0,0 +1,52 @@
|
||||
# Apache and PHP configuration for EGroupware
|
||||
#
|
||||
# Many settings are required to have a # certain value for eGroupWare
|
||||
# to function reasonably, so only change something if you are sure.
|
||||
|
||||
# this makes EGroupware available for all vhosts
|
||||
Alias /egroupware /usr/share/egroupware
|
||||
|
||||
<Directory /usr/share/egroupware/>
|
||||
Options FollowSymLinks ExecCGI
|
||||
AllowOverride None
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
DirectoryIndex index.html index.php
|
||||
AddHandler cgi-script .cgi
|
||||
AddDefaultCharset Off
|
||||
php_flag file_uploads on
|
||||
php_flag log_errors on
|
||||
php_flag magic_quotes_gpc off
|
||||
php_flag magic_quotes_runtime off
|
||||
php_flag register_globals off
|
||||
php_flag short_open_tag on
|
||||
php_flag track_vars on
|
||||
php_flag display_errors off
|
||||
php_value error_reporting 'E_ALL & ~E_NOTICE'
|
||||
php_value max_execution_time 90
|
||||
php_admin_value mbstring.func_overload 7
|
||||
php_value memory_limit 64M
|
||||
php_value session.gc_maxlifetime 14400
|
||||
php_value include_path .:/usr/share/pear
|
||||
php_admin_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/tmp:/usr/share/pear:/usr/bin/zip:/usr/share/jpgraph
|
||||
php_value upload_max_filesize 64M
|
||||
php_value post_max_size 65M
|
||||
<Files ~ "\.inc\.php$">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</Files>
|
||||
</Directory>
|
||||
|
||||
<Directory /usr/share/egroupware/phpsysinfo/>
|
||||
php_admin_value open_basedir /
|
||||
</Directory>
|
||||
|
||||
<Directory /usr/share/egroupware/gallery/>
|
||||
php_admin_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/tmp:/usr/share/pear:/usr/bin:/bin
|
||||
</Directory>
|
||||
|
||||
<Location /egroupware/rpc.php>
|
||||
php_admin_value mbstring.func_overload 0
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</Location>
|
4
doc/rpm-build/egroupware.cron
Normal file
4
doc/rpm-build/egroupware.cron
Normal file
@ -0,0 +1,4 @@
|
||||
MAILTO=root
|
||||
SHELL=/bin/bash
|
||||
# run EGroupware's async services for all domains
|
||||
*/5 * * * * apache /usr/bin/php -q /usr/share/egroupware/phpgwapi/cron/asyncwrapper.php
|
8
doc/rpm-build/header.inc.php
Normal file
8
doc/rpm-build/header.inc.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
// dummy setup file
|
||||
if (strpos($_SERVER['PHP_SELF'],'/setup/') === false)
|
||||
{
|
||||
header('Location: /egroupware/setup/');
|
||||
exit;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user