if you are interested I could redirect a sub-domain name e.g. explorer.sucremoneda.net
all you need to do is install nginx on your server with sites-available explorer.sucremoneda.net (code below)
upstream aha3 { # (1)
server 202.5.23.130:98;
keepalive 8;
}
# the nginx server instance
server {
listen 0.0.0.0:80;
server_name explorer.sucremoneda.net;
location / {
# (2)
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://aha3/; # (1)
proxy_redirect off; # (3)
location /excluded {
return 403;
}
}
}
the emonicons showing are actually 3 x interrogations
also you can get all logos HD here: http://sucremoneda.net/PressKit.zip to add coin logo less blurry.