0

I'm trying to run a test phpinfo page from:

/home/admin/testdomain.com

But it displays such error:

Internal Server Error

Directory / is not owned by admin
suPHP 0.7.1

My /etc/suphp.conf is like this:

[global]
logfile=/var/log/httpd/suphp_log
loglevel=info
webserver_user=apache
docroot=/
env_path=/bin:/usr/bin
umask=0022
min_uid=500
min_gid=48

; Security options
allow_file_group_writeable=true
allow_file_others_writeable=false
allow_directory_group_writeable=true
allow_directory_others_writeable=false

;Check wheter script is within DOCUMENT_ROOT
check_vhost_docroot=false

;Send minor error messages to browser
errors_to_browser=true

[handlers]
;Handler for php-scripts
x-httpd-php="php:/usr/bin/php-cgi"
; x-httpd-php52="php:/usr/local/lxlabs/ext/php/bin/php_cgi"
x-httpd-php52="php:/usr/local/lxlabs/ext/php/etc/lxphpcgi.sh"

;Handler for CGI-scripts
x-suphp-cgi="execute:!self"
Spacedust
  • 568
  • 5
  • 13
  • 28

1 Answers1

2

A fix is simple:

chown root.root /
Spacedust
  • 568
  • 5
  • 13
  • 28