我在服务器上使用Windows10,Laragon Apache和Filezilla服务器 当我在http上使用Apache时,这是可行的,但是当我将其转到https时 通过
上的代码 <Directory "C:/laragon/www/">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost _default_:443>
<Directory "C:/laragon/www/">
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile C:/laragon/ssl/certificate.crt
SSLCertificateKeyFile C:/laragon/ssl/private.key
SSLCertificateChainFile C:/laragon/ssl/ca_bundle.crt
</VirtualHost>
我的客户端无法连接到服务器,并且没有向我返回任何错误,只会使我陷入无尽的循环尝试中
myclient(vscode上的ftp-kr)结果:
myserver结果:
21&990端口已打开 我用21尝试过,结果相同
我的客户端配置
{
"host": "95.216.111.51",
"username": "danial",
"password": "*******",
"remotePath": "/",
"protocol": "ftps",
"port": 990,
"fileNameEncoding": "utf8",
"autoUpload": true,
"autoDelete": false,
"autoDownload": false,
"ignore": [
".git",
"/.vscode"
]
}
我的filezilla服务器ssl配置也链接了apache ssl证书