スマホユーザーにお知らせ

2023年10月26日以降、テクニカル諏訪子のブログがスマホでの閲覧を対応しなくなったと案内しています。
パソコンやサーバーを使用するようにとの指示があります。

おすすめブラウザこちらです:

なお、理由については、「STOP!!スマホ」キャンペーンをご覧下さい。

ご理解お願い申し上げます。

ヘッダー
支援♡ : Monero

【デジタル自主】ダークネットの解説 第3部:Torでウエブページをホスティングする方法

トップページに戻る

こちらはダークネットの使い方の解説シリーズです。
ダークネットはデジタル自主のインターネットの未来ですので、早くわかった方が良いですね。♡

一般ネットよりダークネットの方がメリットは:

デメリットは:

じゃ、最初のTorサービスを設置しましょう!!
注意:CentOSのレポジトリーでi2pdがありませんので、そうしてTorのバージョンは非常に古いですので、CentOSを使うのは全然勧めません。

Torのインストール

Debian、Devuanの場合

$ sudo apt install tor nginx

OpenBSDの場合

$ doas pkg_add tor nginx

Torの設定

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

nginxの設定

$ 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ドメインにアクセスして、出来たら成功です!

続く


Valid XHTML 1.1 正当なCSSです! どのブラウザでも表示出来ます! hacker emblem SDGsに反対 スマホに反対

匿名自営業076の設立者
ページのGitGitリポジトリ