こちらはダークネットの使い方の解説シリーズです。
ダークネットはデジタル自主のインターネットの未来ですので、早くわかった方が良いですね。♡
一般ネットよりダークネットの方がメリットは:
デメリットは:
じゃ、最初のTorサービスを設置しましょう!!
注意:CentOSのレポジトリーでi2pdがありませんので、そうしてTorのバージョンは非常に古いですので、CentOSを使うのは全然勧めません。
目次 |
---|
Torのインストール |
・Debian、Devuanの場合 |
・OpenBSDの場合 |
Torの設定 |
nginxの設定 |
$ sudo apt install tor nginx
$ doas pkg_add tor nginx
Debian、Devuanの場合:
$ nvim /etc/tor/torrc
OpenBSDの場合:
$ nvim /usr/local/etc/tor/torrc
下記を追加して下さい。
HiddenServiceDir /var/lib/tor/sarvice1/
HiddenServicePort 6001
HiddenServiceDir /var/lib/tor/sarvice2/
HiddenServicePort 6002
...
$ /etc/init.d/tor restart
新規創作された.onionドメイン名を受け取って:
$ cat /var/lib/tor/sarvice1/hostname
hogehogehogehoge.onion
$ cat /var/lib/tor/sarvice2/hostname
gohegohegohegohe.onion
$ 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:6001;
root /var/www/sarvice1;
index index.html index.htm;
server_name hogehogehogehoge.onion;
}
$ nvim /etc/nginx/sites-available/sarvice2.conf
server {
listen 127.0.0.1:6002;
root /var/www/sarvice2;
index index.html index.htm;
server_name gohegohegohegohe.onion;
}
$ 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つの.onionドメインにアクセスして、出来たら成功です!
続く
匿名自営業076の設立者
ページのGitリポジトリ