windows下nginx代办代理ftp处事器

时间:2021-08-20 03:45:06

我所在的开发环境里,nginx和ftp在同一台服务器。

ftp根目录:

windows下nginx代办代理ftp处事器

nginx的配置:

在nginx.conf中加入:

server { listen 9090; server_name localhost; location / { root C:/FTPRoot; index *.*; add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; } }

然后重新加载配置文件即可,参考:https://www.cnblogs.com/qianzf/p/6809427.html。