I have set up vstfpd on EC2 Linux server using various resources including this: Setting up FTP on Amazon Cloud Server and I am able to start vsftpd:
Starting vsftpd for vsftpd: [ OK ]
Have SG set up to allow access on ports 12000 - 12100 and have this set up on vsftpd.conf as:
pasv_enable=YES
pasv_address=54.175.227.189
pasv_min_port=12000
pasv_max_port=12100
port_enable=YES
I can get SFTP working via FileZilla using my .pem file on local maching - but want to be able to have users upload files directly into this EC2 instance from their web browser (I am using PHP). I've searched and cannot find any examples so am keen to get some information to help me move ahead.
thanks in advance!
kiteandwindsurfer