图片服务器

时间:2021-05-05 17:45:55   收藏:0   阅读:13

1

    #                                                                       图片服务器
    server {
        listen       8098;
        server_name  127.0.0.1;
        add_header Access-Control-Allow-Origin: *;
        add_header Access-Control-Allow-Methods: *;
        add_header Access-Control-Allow-Headers: *;
        if ($request_method = ‘OPTIONS‘) {
            return 204;
        }

        location / {
            root  D:\workspace\aFileUpload;
            index  index.html index.htm;
        }
    }

原文:https://www.cnblogs.com/yezi-zq/p/14731226.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!