1. vsftpd 관련
vsftpd.conf
에서
local_enable=YES 로 해야 계정 사용해서 접속 가능
anonymous 접속 막았을 때 접속 안 된다고 하지 말고
local_enable=YES 확인~!!
=============================
2. nginx php-fpm 연동할 때
nginx.conf에
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name; 라고 $document_root 부분을
명시적으로 기술하여 file not found 부분 해결….
location ~ .php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}