关于 通过http请求 无法访问Linux下的ftp服务的解决办法!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 通过http请求 无法访问Linux下的ftp服务的解决办法!相关的知识,希望对你有一定的参考价值。

解决办法:
1.首先进入到nginx配置文件下面:

技术分享图片

然后继续往下:

技术分享图片

其中 “server_name”表示的是本机IP 也可设置成 “localhost”,“location”表示本地的意思 。

先看根目录“root /home/ftpuser/hry/”表示的是根路径,

“images”表示本地路径。

区别 比如访问路径“http://192.168.64.128/home/ftpuser/hry/images

设置了根路径之后就可以更改为“http://192.168.64.128/images

代码:

server {
listen 80;
server_name 192.168.64.128;
location / {
root html;
index index.html index.htm;
}
location /images/ {
root /home/ftpuser/hry/;
autoindex on;
}

以上是关于关于 通过http请求 无法访问Linux下的ftp服务的解决办法!的主要内容,如果未能解决你的问题,请参考以下文章

无法访问集合下的文档

[]转帖] 浅谈Linux下的五种I/O模型

怎样开启linux系统下的ntp同步请求?

怎样开启linux系统下的ntp同步请求?

linux系统,请问root目录下的文件夹如何才能允许ftp访问

关于Http请求header之Referer讲解