summaryrefslogtreecommitdiff
path: root/network/suphp/config/suphp.conf
blob: 1a2295dd0d9b8a56c7a3533fea95dccb14a56ca4 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[global]
; Path to logfile
; This is set to where Apache logs reside aswell
logfile=/var/log/httpd/suphp_log

; Loglevel
loglevel=info

; User Apache is running as
webserver_user=@HTTPD_USER@

; Path all scripts have to be in
; This should reflect the vhosts DocumentRoot
docroot=/var/www:${HOME}/public_html

; Path to chroot() to before executing script
;chroot=/mychroot

; Security options
; Note: RedHat-like systems expect 'group_writeable' privs
allow_file_group_writeable=false
allow_file_others_writeable=false
allow_directory_group_writeable=false
allow_directory_others_writeable=false

; Check wheter script is within DOCUMENT_ROOT
check_vhost_docroot=true

; Send minor error messages to browser
errors_to_browser=true

; PATH environment variable
env_path=/bin:/usr/bin

; Umask to set, specify in octal notation
; Provided all users are in the 'users' group 072,
; makes sure they cannot mess about eachothers files.
; Note: homedirs can have <username>:apache 0710 perms!
umask=0072

; Minimum UID
; The default Slackware NIS config uses this UID boundry
min_uid=500

; Minimum GID
; The 'users' group
min_gid=100

[handlers]
; Handler for php-scripts
x-httpd-php="php:/usr/bin/php-cgi"

; Handler for CGI-scripts
; Similar in functionality to suEXEC
x-suphp-cgi="execute:!self"