which will make all git repositories on the domain visitable as websites with raw file access url.
+
+
response headers, separeded by ';', Ex.:
+Access-Control-Allow-Origin;*;Access-Control-Allow-Credentials;true mybing2.xn--xyza.top
+
+
which makes "mybing2.xn--xyza.top" to accept CORS requests with cookies.
"default.hosts" blocks whole domain trees including all descedant domains. The domains in the hosts file must be 2 or 3 segment domains, such as "yahoo.com" and "finance.yahoo.com". If the length of the last 2 segments is less than 7, such as "com.pl", then it is treated as one segment, so domains like "xxx.xxx.com.pl" are also valid in the hosts file.
Each line of the hosts file has the following format:
[rootDomain][space][regex for domain prefix before rootDomain][space][regex for the whole url without "http(s)://"]
@@ -75,7 +80,7 @@ The first part [rootDomain] is required and the others are optional. regex is ja
Last Modified: 3 April 2023
-enhance hosts file to add attributes to domains
+bingAI to support cors with cookies
987: enhance hosts file to support domain attributes, such as lifting limitations with empty ip address.
+
988: hosts file to support response headers.
+987: enhance hosts file to support domain attributes, such as lifting limitations with empty ip address.
985: Special urls to support shortcut keys such as ctrl-a to ctrl-z.
983: support "hosts" file domain name resolving (no root needed), only single space allowed as separator for ip address and domain name.
975: Bookmarks to support styling for markdown etc.
@@ -78,7 +79,7 @@
Last Modified: 3 April 2023
-enhance hosts file to add attributes to domains
+bingAI to support cors with cookies
diff --git a/en/index.xml b/en/index.xml
index 1f9425b..d6ff861 100644
--- a/en/index.xml
+++ b/en/index.xml
@@ -196,10 +196,10 @@ github
sourceforge
powerfolder
pagure
-Main features Change logs 987: enhance hosts file to support domain attributes, such as lifting limitations with empty ip address.
+Main features Change logs 988: hosts file to support response headers.
+987: enhance hosts file to support domain attributes, such as lifting limitations with empty ip address.
985: Special urls to support shortcut keys such as ctrl-a to ctrl-z.
-983: support "hosts" file domain name resolving (no root needed), only single space allowed as separator for ip address and domain name.
-975: Bookmarks to support styling for markdown etc.
+983: support "hosts" file domain name resolving (no root needed), only single space allowed as separator for ip address and domain name.
diff --git a/en/searchurl/bingAI/js/bingChatHub.js b/en/searchurl/bingAI/js/bingChatHub.js
index a13f2c8..1c40007 100644
--- a/en/searchurl/bingAI/js/bingChatHub.js
+++ b/en/searchurl/bingAI/js/bingChatHub.js
@@ -439,7 +439,7 @@ async function createChat(theChatType) {
}
try {
await copyCookies(magicUrl);
- let res = await fetch(URLTrue(magicUrl, 'Create'));
+ let res = await fetch(URLTrue(magicUrl, 'Create'),{credentials: 'include'});
let resjson = await res.json();
if (!resjson.result) {
console.warn(resjson);
diff --git a/en/searchurl/func.html b/en/searchurl/func.html
index 8df95e6..26485f9 100644
--- a/en/searchurl/func.html
+++ b/en/searchurl/func.html
@@ -57,7 +57,7 @@ body>ul{padding-left:0;}
-
+