mirror of
https://codeberg.org/postscriptum/gemlog.git
synced 2026-02-18 22:12:40 +00:00
initial commit
This commit is contained in:
commit
259fee630b
127 changed files with 7811 additions and 0 deletions
44
public/en/connect-i2p-with-yggdrasil.gmi
Normal file
44
public/en/connect-i2p-with-yggdrasil.gmi
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Connect I2P with Yggdrasil
|
||||
|
||||
Access the I2P network without installing its i2pd router.
|
||||
|
||||
## FireFox / LibreWolf
|
||||
|
||||
### PAC file
|
||||
|
||||
Settings > Network Settings > Automatic proxy configuration URL > file:///path/to/route.pac
|
||||
|
||||
``` route.pac
|
||||
function FindProxyForURL(url, host)
|
||||
{
|
||||
if (/\.(i2p|onion)$/.test(host))
|
||||
{
|
||||
// HTTP
|
||||
return 'PROXY [324:71e:281a:9ed3::fa11]:3128';
|
||||
|
||||
// SOCKS5
|
||||
// return 'SOCKS5 [324:71e:281a:9ed3::fa11]:1080';
|
||||
}
|
||||
}
|
||||
```
|
||||
* an example above uses the outproxy.acetone.*
|
||||
|
||||
### DNS
|
||||
|
||||
Enter to the URL `about:config`, then add following records:
|
||||
|
||||
* browser.fixup.domainsuffixwhitelist.i2p
|
||||
* browser.fixup.domainsuffixwhitelist.onion
|
||||
|
||||
### Test
|
||||
|
||||
=> http://proxy4uwdijqxac2bvdx4fuhem6njmiwukuk2gelejv2nzxka2xq.b32.i2p
|
||||
|
||||
## Feedback
|
||||
|
||||
=> gemini://bbs.geminispace.org/s/Yggdrasil/29406 Discussion on BBS
|
||||
=> http://[302:68d0:f0d5:b88d::fed]/ps/p/1750540695.117515 Comment on the Fediverse instance
|
||||
|
||||
## See also
|
||||
|
||||
=> connect-libera-chat-with-yggdrasil.gmi Connect Libera.Chat with Yggdrasil
|
||||
Loading…
Add table
Add a link
Reference in a new issue