OS:Ubuntu 10.04 etc/suphp/suphp.conf:
[global]
;Path to logfile
logfile=/var/log/suphp/suphp.log
;Loglevel
loglevel=info
;User Apache is running as
webserver_user=www-data
;Path all scripts have to be in
docroot=/home
;Path to chroot() to before executing script
;chroot=/mychroot
; Security options
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=false
;PATH environment variable
env_path=/bin:/usr/bin
;Umask to set, specify in octal notation
umask=0077
; Minimum UID
min_uid=100
; Minimum GID
min_gid=100
[handlers]
;Handler for php-scripts
application/x-httpd-suphp="php:/usr/bin/php-cgi"
;Handler for CGI-scripts
x-suphp-cgi="execute:!self"
サイト内のいくつかの仮想ホスト-有効:
NameVirtualHost *:8080
<VirtualHost *:8080>
ServerAdmin ...
ServerName ...
ServerAlias ...
AddType application/x-httpd-php .php
AddHandler application/x-httpd-php .php
suPHP_Engine on
suPHP_UserGroup user user
suPHP_ConfigPath "/home/user/etc"
suPHP_PHPPath /usr/bin
DocumentRoot /home/user/web/site.com/
ErrorLog /var/log/Apache2/site.com-error_log
CustomLog /var/log/Apache2/site.com-access_log common
<Directory /home/user/web/site.com/>
Order Deny,Allow
Allow from all
Options +Indexes
</Directory>
</VirtualHost>
しかし、nano/home/user/web/id.phpを実行して貼り付けたとき
<?php
system('id');
?>
その中で、私が得る結果は次のとおりです。
uid=33(www-data) gid=33(www-data) groups=33(www-data)
どうしたらいいかわからないので、コミュニティが助けてくれることを望んでいました
ty。
私に飛びついた唯一のことは、 documentation は、suPHP_UserGroup user user
ステートメントは<Directory> ... </Directory>
内でのみ有効であると言っているということです。
編集-私はこれを設定し、それは機能しています-これは私がしたことです
/etc/Apache2/mods-available/suphp.conf
を含むを作成しました
<IfModule mod_suphp.c>
AddType application/x-httpd-suphp .php .php3 .php4 .php5 .phtml
suPHP_AddHandler application/x-httpd-suphp
</IfModule>
および/etc/Apache2/mods-available/suphp.load
を含む
LoadModule suphp_module /usr/lib/Apache2/modules/mod_suphp.so
走った
Sudo a2enmod suphp
Sudo a2dismod php5
suphp
を有効にし、php
を無効にします
サイト対応の私の仮想ホスト
<VirtualHost *:80>
ServerAdmin webmaster@localhost
suPHP_Engine on
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
suPHP_UserGroup user user
</Directory>
.
. other stuff
.
</VirtualHost>
/var/www
はuser:user
が所有しています。私の/etc/suphp/suphp.conf
は機能的にはあなたのものと同じです。 OSはUbuntu10.04です