mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #2830
f5461a6a
RPC: CORS add Access-Control-Allow-Headers to OPTIONS preflight (Tim L)
This commit is contained in:
commit
0d7162dc10
1 changed files with 3 additions and 0 deletions
|
@ -639,6 +639,9 @@ namespace net_utils
|
||||||
buf += "Access-Control-Allow-Origin: ";
|
buf += "Access-Control-Allow-Origin: ";
|
||||||
buf += m_query_info.m_header_info.m_origin;
|
buf += m_query_info.m_header_info.m_origin;
|
||||||
buf += "\r\n";
|
buf += "\r\n";
|
||||||
|
buf += "Access-Control-Expose-Headers: www-authenticate\r\n";
|
||||||
|
if (m_query_info.m_http_method == http::http_method_options)
|
||||||
|
buf += "Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With\r\n";
|
||||||
buf += "Access-Control-Allow-Methods: POST, PUT, GET, OPTIONS\r\n";
|
buf += "Access-Control-Allow-Methods: POST, PUT, GET, OPTIONS\r\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue