Onion Redirect
Introduction This post should be short and sweet - the goal is to get this: in the Tor browser. References TOR.org TOR.onion (hint: it’s the same page) Implementation The first step is to set up a Tor site. After that, everything is easy. Nginx Add this line to your site’s .conf file: add_header Onion-Location http://<your-onion-address>.onion$request_uri; Folder Structure ├──your-project-folder │ ├──Dockerfile │ ├──your-website-contents-folder │ │ └──[CONTENTS] └──└──nginx.conf Nginx Contain in Docker This configuration assumes you’re building your own docker container, and probably getting a custom url. ...