Eu configurei uma cadeia chroot para um usuário "bob". bob está localizado em / var / jails / bob
Bob tem um site localizado em /var/jails/bob/bobssite.com/public_html
Tudo parece funcionar até agora, incluindo o fato de que o processo está sendo executado com o uid de bob (verificado com php "exec ('whoami')), ou seja, até eu definir o chroot no arquivo de configuração php5-fpm site de bob (/etc/php5/fpm/pool.d/bobssite.com.conf):
[bobssite.com]
; Per pool prefix
; It only applies on the following directives:
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
; - 'chdir'
; - 'php_values'
; - 'php_admin_values'
; When not set, the global prefix (or /usr) applies instead.
; Note: This directive can also be relative to the global prefix.
; Default Value: none
;prefix = /var/jails/bob/$pool/public_html/
user = bob
group = webjail
listen = /var/run/php5-fpm_bobssite.com.sock
listen.owner = www-data
listen.group = www-data
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
; Chroot to this directory at the start. This value must be defined as an
; absolute path. When this value is not set, chroot is not used.
; Note: you can prefix with '$prefix' to chroot to the pool prefix or one
; of its subdirectories. If the pool prefix is not set, the global prefix
; will be used instead.
; Note: chrooting is a great security feature and should be used whenever
; possible. However, all PHP paths will be relative to the chroot
; (error_log, sessions.save_path, ...).
; Default Value: not set
chroot = /var/jails/bob/bobssite.com/public_html
chdir = /
Agora, quando o chroot acima é comentado, tudo funciona. Se eu configurá-lo para gostar de / var / jails / bob / notbobssite o php5-fpm não reinicia / trabalha porque é um caminho inválido. Se eu configurá-lo para o que está atualmente definido, recebo "Arquivo não encontrado" quando visito a página, e isso no meu error.log
[Thu Oct 16 10:46:39 2014] [error] [client myip] FastCGI: server "/usr/lib/cgi-bin/php5-fcgi_bobssite.com" stderr: Primary script unknown
[Thu Oct 16 10:46:39 2014] [debug] mod_deflate.c(700): [client myip] Zlib: Compressed 16 to 24 : URL /php5-fcgi/user.php
Então, o que está acontecendo aqui? Eu estou supondo que a linha de depuração detém a resposta, mas eu não consigo descobrir?
Aqui está o meu arquivo de configuração do host virtual Apache:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName bobssite.com
ServerAlias www.bobssite.com
DocumentRoot /var/jails/bob/bobssite.com/public_html/
ErrorLog /var/jails/bob/bobssite.com/error.log
CustomLog /var/jails/bob/bobssite.com/access.log combined
<IfModule mod_fastcgi.c>
AddType application/x-httpd-fastphp5 .php
Action application/x-httpd-fastphp5 /php5-fcgi
Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi_bobssite.com
FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi_bobssite.com -socket /var/run/php5-fpm_bobssite.com.sock -pass-header Authorization
</IfModule>
</VirtualHost>
Tags chroot debian fastcgi apache-2.2 php-fpm