投稿日:2022-07-21
こちらはダークネットの使い方の解説シリーズです。
ダークネットはデジタル自主のインターネットの未来ですので、早くわかった方が良いですね。♡
一般ネットよりダークネットの方がメリットは:
* イラストの検閲(モザイク等。また、日本国憲法第二十一条による検閲法律は憲法違反だ])は不要だ
デメリットは:
じゃ、最初のI2PでのEepsite(イープサイト)を設置しましょう!!
sudo apt install i2pd
doas pkg_add i2pd
$ useradd -m i2p -s /bin/bash $ su -l i2p $ mkdir ~/.i2pd $ cd ~/.i2pd $ nvim tunnels.conf
下記を追加して下さい。
[SARVICE1] type = http host = 127.0.0.1 port = 7001 keys = sarvice1.dat [SARVICE2] type = http host = 127.0.0.1 port = 7002 keys = sarvice2.dat ...
rootユーザに戻るには、CTRL+Dを押して下さい。
$ /etc/init.d/i2pd restart
新規創作された.i2pドメイン名を受け取って:
$ printf "%s.b32.i2p " $(head -c 391 /home/i2p/.i2pd/sarvice1.dat |sha256sum|xxd -r -p | base32 |sed s/=//g | tr A-Z a-z) hogehogehogehoge.b32.i2p $ printf "%s.b32.i2p " $(head -c 391 /home/i2p/.i2pd/sarvice2.dat |sha256sum|xxd -r -p | base32 |sed s/=//g | tr A-Z a-z) gohegohegohegohe.b32.i2p
$ mkdir /var/www/sarvice{1,2} $ touch /var/www/sarvice{1,2}/index.html $ nvim /etc/nginx/sites-available/sarvice1.conf
server { listen 127.0.0.1:7001; root /var/www/sarvice1; index index.html index.htm; server_name hogehogehogehoge.b32.i2p; }
$ nvim /etc/nginx/sites-available/sarvice2.conf
server { listen 127.0.0.1:7002; root /var/www/sarvice2; index index.html index.htm; server_name gohegohegohegohe.b32.i2p; }
$ ln -s /etc/nginx/sites-available/sarvice1.conf /etc/nginx/sites-enabled $ ln -s /etc/nginx/sites-available/sarvice2.conf /etc/nginx/sites-enabled
「/var/www/sarvice1/index.html」と「/var/www/sarvice2/index.html」ファイルでご自由に入力して下さい。
$ /etc/init.d/nginx restart
2つの.i2pドメインにアクセスして、出来たら成功です!
以上