windows下nginx代理ftp服务器
2021-04-20 23:26
标签:class cat control with 分享图片 root span cal options 我所在的开发环境里,nginx和ftp在同一台服务器。 ftp根目录: nginx的配置: 在nginx.conf中加入: 然后重新加载配置文件即可,参考:https://www.cnblogs.com/qianzf/p/6809427.html。 windows下nginx代理ftp服务器 标签:class cat control with 分享图片 root span cal options 原文地址:https://www.cnblogs.com/grey-wolf/p/8600634.html 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;
}
}
上一篇:窗体中添加控件与窗体显示和隐藏
文章标题:windows下nginx代理ftp服务器
文章链接:http://soscw.com/index.php/essay/77340.html