描述:把一个项目或者数据发布出来,通过http的形式访问,比如发布一个js文件,用http://localhost:6060/data/jquery/jquery.min.js访问。
步骤:配置nginx.conf文件,nginx.conf位于conf目录下,在server中添加如下配置
location /data {add_header Access-Control-Allow-Origin *;add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';add_header Access-Control-Allow-Headers'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';if ($request_method = 'OPTIONS' ) {return 204;}alias E:/YZ/serverData;}
通过此方式就把E:/YZ/serverData这个目录发布出来了,可通过http://localhost:6060/data访问serverData目录里面的资源。
比如访问serverData/jquery/jquery.min.js,即可通过http://localhost:6060/data/jquery/jquery.min.js方式访问到。