Hi.
If i set up a hidden service on a regular Linux system I would normally add
listen 127.0.0.1:80;
In order to bind the web server to localhost, using nginx and whonix if you bind the server to 127.0.0.1 the hidden service will not load when trying to access it via an onion address.
It does load using an onion address with either of these lines instead.
Listen 80;
or
Listen 10.152.152.11:80;
Is using Listen 80; safe? as whonix is forcing all traffic through tor or should I bind it to 10.152.152.11 and will this cause any issues?
My concern is shodan or an equivalent finding information.
Thanks in advance.