The nginx server block is listening on a port other than 80, if that matters. It’s all my VPN provider will allow me to forward.
server {
listen [PORT];
server_name mysite.i2p;
location / {
proxy_pass http://127.0.0.1:7657/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
You must log in or # to comment.
Right now it looks like you trying to expose your i2p console via i2p I would not do it. If you need remote access I would use tailscale this is how I have my setup.
that error is coming from I2P, not nginx
so good news? your nginx configuration is probably fine
bad news? I know fuck all about I2P. assuming you’re intending to reach the “router console”, you could probably follow the suggested configuration change in the error message to Do That Thing
Not to sound snarky but did you follow the instruction in the error message?


