location /cachet/ {
alias /var/www/cachet/public;
try_files $uri $uri/ /index.php?$query_string;
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
を得る禁じ与える「ファイルが見つかりません。」
nginxのは、PHPとnginxのプロセスを実行するcachet
フォルダ
drwxr-xr-x 13 www-data www-data 4096 jan 27 01:26 cachet
を読むことができるようになります。
[email protected]:/var/www# ps aux -P | grep nginx
root 21623 0.0 0.0 125756 1684 ? Ss 01:43 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 21624 0.0 0.0 125756 2300 ? S 01:43 0:00 nginx: worker process
www-data 21625 0.0 0.0 125756 2992 ? S 01:43 0:00 nginx: worker process
root 21636 0.0 0.0 12888 1120 pts/0 S+ 01:50 0:00 grep --color=auto nginx
[email protected]:/var/www# ps aux -P | grep php
root 17562 0.0 0.4 280252 19476 ? Ss jan26 0:00 php-fpm: master process (/etc/php/7.0/fpm/php-fpm.conf)
www-data 17563 0.0 0.6 285472 26408 ? S jan26 0:00 php-fpm: pool www
www-data 17564 0.0 0.6 285792 26708 ? S jan26 0:00 php-fpm: pool www
root 21638 0.0 0.0 12888 1116 pts/0 S+ 01:50 0:00 grep --color=auto php