centos7里nginx访问vsftp目录
cd/etc/nginx/conf.d vi web.conf server { listen 80;server_name localhost;...fastcgi_pass 127.0.0.1:9000;...fastcgi_param SCRIPT_FILENAME$document_root$fastcgi_script_name;...cd/opt/www mkdir web chmod 777 web cd /etc/vsftpd/user vi web local_root=/opt/www/web write_enable=YES anon_world_readable_only=NO anon_mkdir_write_enable=YES anon_upload_enable=YES anon_other_write_enable=YES systemctl restart vsftpd systemctl restart nginx 浏览器端访问ftp...