修改nginx.conf
worker_processes 1;events {worker_connections 1024;}http {include mime.types;default_type application/octet-stream;server {listen 80;server_name localhost;location / {autoindex on;default_type text/plain;root E:\myftp;}}}
