問題:
I have an installation of Laravel on Wampserver. The directory is as follows:
I have an installation of Laravel on Wampserver. The directory is as follows:

pasv_enable=Yes
pasv_max_port=10100
pasv_min_port=10090
This enables passive mode and restricts it to using the eleven ports for data connections. This is useful as you need to open these ports on your firewall.iptables -I INPUT -p tcp --destination-port 10090:10100 -j ACCEPT
service iptables save
/etc/sysconfig/iptables file.# firewall-cmd --get-active-zones
public
interfaces: eth0
# firewall-cmd --permanent --zone=public --add-port=10090-10100/tcp
# firewall-cmd --reload
Your client makes a connection to the vsftpd server on port 21.
The sever responds to the client telling it which port to connect to from the range specified above.
The client makes a data connection on the specified port and the session continues.
