File: b2evolution.conf

package info (click to toggle)
b2evolution 0.9.2-3%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 12,972 kB
  • ctags: 5,460
  • sloc: php: 58,989; sh: 298; makefile: 36
file content (27 lines) | stat: -rw-r--r-- 694 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Alias /b2evolution /usr/share/b2evolution/

<Directory /usr/share/b2evolution/>

	# some classic default directives
	Options FollowSymLinks -Indexes
	AllowOverride AuthConfig Limit Options FileInfo Indexes

	<IfModule mod_php4.c>
		# to have a more secure execution, globals are turned off
		php_flag register_globals Off
		
		# the amount of memory the script can allocate is deliberately
		# limited
		php_value memory_limit 8M
	</IfModule>

	<IfModule mod_php5.c>
		# to have a more secure execution, globals are turned off
		php_flag register_globals Off
		
		# the amount of memory the script can allocate is deliberately
		# limited
		php_value memory_limit 8M
	</IfModule>

</Directory>