1 |
stephdl |
1.1 |
diff -Nur e-smith-ibays-2.4.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/90e-smithAccess40ibays e-smith-ibays-2.4.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/90e-smithAccess40ibays |
2 |
|
|
--- e-smith-ibays-2.4.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/90e-smithAccess40ibays 2014-03-09 09:40:02.816435745 +0100 |
3 |
|
|
+++ e-smith-ibays-2.4.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/90e-smithAccess40ibays 2014-03-09 15:45:21.500197096 +0100 |
4 |
|
|
@@ -93,6 +93,16 @@ |
5 |
|
|
my $followSymLinks = $properties{'FollowSymLinks'} || "disabled"; |
6 |
|
|
my $indexes = $properties{'Indexes'} || "enabled"; |
7 |
|
|
my $sslRequireSSL = $properties{'SSLRequireSSL'} || "disabled"; |
8 |
stephdl |
1.2 |
+ my $ssldb = $properties{'SSL'} || 'disabled'; |
9 |
stephdl |
1.1 |
+ |
10 |
stephdl |
1.2 |
+###php values for each ibay or set 'disabled' if not defined |
11 |
|
|
+ my $allowurlfopen = $properties{'AllowUrlfOpen'} || 'disabled'; |
12 |
|
|
+ my $memoryLimit = $properties{'MemoryLimit'} || 'disabled'; |
13 |
|
|
+ my $upmaxfileSize = $properties{'UpMaxFileSize'} || 'disabled'; |
14 |
|
|
+ my $postmaxSize = $properties{'PostMaxSize'} || 'disabled'; |
15 |
|
|
+ my $maxexecutionTime = $properties{'MaxExecTime'} || 'disabled'; |
16 |
|
|
+ $maxexecutionTime = '0' if $maxexecutionTime eq 'unlimited'; |
17 |
stephdl |
1.1 |
+ |
18 |
|
|
$OUT .= "\n"; |
19 |
|
|
$OUT .= "#------------------------------------------------------------\n"; |
20 |
|
|
$OUT .= "# $key ibay directories ($properties{'Name'})\n"; |
21 |
|
|
@@ -100,7 +110,7 @@ |
22 |
|
|
|
23 |
|
|
$OUT .= "\n"; |
24 |
|
|
$OUT .= "<Directory /home/e-smith/files/ibays/$key/html>\n"; |
25 |
|
|
- if ($sslRequireSSL eq 'enabled') |
26 |
stephdl |
1.2 |
+ if (($sslRequireSSL eq 'enabled') || ($ssldb eq 'enabled')) |
27 |
stephdl |
1.1 |
{ |
28 |
|
|
$OUT .=" SSLRequireSSL\n"; |
29 |
|
|
} |
30 |
|
|
@@ -108,8 +118,13 @@ |
31 |
|
|
$OUT .= " Options +Indexes\n" if ($indexes eq 'enabled'); |
32 |
|
|
$OUT .= " Options +FollowSymLinks\n" if ($followSymLinks eq 'enabled'); |
33 |
|
|
if ($dynamicContent eq 'enabled') |
34 |
|
|
- { |
35 |
|
|
+ { |
36 |
|
|
$OUT .= " Options +Includes\n"; |
37 |
stephdl |
1.2 |
+ $OUT .= " php_admin_flag allow_url_fopen on\n" if ($allowurlfopen eq 'enabled'); |
38 |
|
|
+ $OUT .= " php_admin_value memory_limit $memoryLimit\n" if ($memoryLimit ne 'disabled'); |
39 |
|
|
+ $OUT .= " php_admin_value upload_max_filesize $upmaxfileSize\n" if ($upmaxfileSize ne 'disabled'); |
40 |
|
|
+ $OUT .= " php_admin_value post_max_size $postmaxSize\n" if ($postmaxSize ne 'disabled'); |
41 |
|
|
+ $OUT .= " php_admin_value max_execution_time $maxexecutionTime\n" if ($maxexecutionTime ne 'disabled'); |
42 |
stephdl |
1.1 |
} |
43 |
|
|
else |
44 |
|
|
{ |