0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[メモ]Windowsで.onionサイトをホストする。

Last updated at Posted at 2021-09-24

ステップ1

1.Tor ブラウザをダウンロードし、起動する。
2.PHP をインストールする。

ステップ2

1.PHP でウェブサイトをホストする。
D:\Website\index.phpD:\Website\run.bat を作成する。
D:\Website\index.php に以下のテキストを追加する。

<?php echo "Hello, World!"; ?>

D:\Website\run.bat に以下のテキストを追加する。

php -S 127.0.0.1:80

ステップ3

1.ファイル(拡張子なし) .\Tor Browser\Browser\TorBrowser\Data\Tor\torrc に以下のテキストを追加する。

HiddenServiceDir D:\privatekey
HiddenServicePort 80 127.0.0.1:80

(HiddenServiceDir はサイトが存在する場所ではなく、秘密鍵が保存される場所を設定する)

ステップ4

1.Tor ブラウザを再起動する。
(D:\privatekey\hostname は自動的に生成して、.onionドメインはそこにある)

ステップ5

1.D:\Website\run.bat を実行する。
2.Tor ブラウザで D:\Website\hostname にある.onionドメインにアクセスする。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?