Closed raphael10-collab closed 1 year ago
--proxy-server=http://127.0.0.1:4444
From this blog: https://mhatta.medium.com/the-hitchhikers-guide-to-the-i2p-eepsites-e4dfe6bb7a45 I've taken this sample i2p address: http://kmpmk2fmineaiwublteqlifg4fkmewnhmxqlcgg7qwecz6daj43a.b32.i2p/ : is it online or offline ?
These are the settings of SwitchOmega
:
Example PAC file:
var FindProxyForURL = function(init, profiles) {
return function(url, host) {
"use strict";
var result = init, scheme = url.substr(0, url.indexOf(":"));
do {
result = profiles[result];
if (typeof result === "function") result = result(url, host, scheme);
} while (typeof result !== "string" || result.charCodeAt(0) === 43);
return result;
};
}("+Auto", {
"+Auto": function(url, host, scheme) {
"use strict";
if (/:\/\/[-a-zA-Z0-9.]+\.i2p(:\d+)?\//.test(url)) return "+I2P";
return "DIRECT";
},
"+I2P": function(url, host, scheme) {
"use strict";
if (/^127\.0\.0\.1$/.test(host) || /^::1$/.test(host) || /^localhost$/.test(host) || host[host.length - 1] >= 0 && isInNet(host, "192.168.0.0", "255.255.0.0")) return "DIRECT";
return "PROXY 127.0.0.1:4444";
}
});
URL Regex for I2P: ://[-a-zA-Z0-9.]+\.i2p(:\d+)?/
I've created with three profiles:
URL Regex for I2P: ://[-a-zA-Z0-9.]+.i2p(:\d+)?/
But still I'm not able to see this I2P website: https://dmwqjoudwbxhqswhpitrhr6byc6afuvvja4reo7ecaoc3bpfxwdq.b32.i2p/ :
Now it works fine
Thank you very much @r4sas
In order to be able to see i2p sites, I started with
Ubuntu 22.04 Desktop
google chrome
as follows:But I got :
"There is something wrong with the proxy server, or the address is incorrect"
How to make it work?