Thanks for testing http_server_access_control_allow_origin.
Could you please try
Everything 1.4.1.991 or later.
This version removes http_server_access_control_allow_origin and adds http_server_header.
With this setting you can specify any number of custom headers values.
http_server_header is a semicolon (or comma) delimited list of header values.
Usage:
http_server_header=header-key1: header-value1;header-key2: header-value2;header-key3: header-value3
Use double quotes to escape commas and semicolons:
http_server_header="header-key1: header-value1a,header-value1b,header-value1c"
This header will be added to the existing header (all pages this time!)
For example, to set the following headers values:
Code: Select all
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: content-type
Access-Control-Allow-Methods: GET, PUT, POST, HEAD, DELETE
Access-Control-Allow-Origin: http://192.168.1.43:5000
- In Everything 1.4.1.991 or later, type in the following search and press ENTER:
/http_server_header=Access-Control-Allow-Credentials: true;Access-Control-Allow-Headers: content-type;"Access-Control-Allow-Methods: GET, PUT, POST, HEAD, DELETE";Access-Control-Allow-Origin: http://192.168.1.43:5000
Please let me know which headers work for you.