2021-02-21 16:37:27 +00:00
{% extends "_page.twig" %}
{% block title %} Home {% endblock %}
{% block content %}
<div class="container container_main">
<p class="important title" align="center">
This is reg.i2p registry service.<br>
</p>
<p>
<b>Info:</b><br>
2022-06-12 00:01:02 +00:00
Hosts check is done every hour.<br>
2022-09-15 04:50:26 +00:00
The problem with adding domains in the period from 08/28/22 to 09/15/22 has been fixed. Sorry for the inconvenience.<br> {# to be removed later #}
<br>
2021-02-21 16:37:27 +00:00
Supported commands:
<ul>
<li>adding of hosts for 2LD domains (example.i2p)</li>
<li>adding subdomains (addsubdomain)</li>
2021-02-27 16:02:59 +00:00
<li>adding/changing destination (adddest, changedest) - destination is replaced with the new one, old destination is purged</li>
2021-06-27 16:05:27 +00:00
<li>adding domain alias (addname) - alias must be 2LD (example.i2p). For registering subdomains as aliases please use addsubdomain command</li>
2021-02-21 16:37:27 +00:00
</ul>
</p>
<p>
<b>Subscription:</b><br>
For addressbook subscription use <a href="/hosts.txt">/hosts.txt</a> file.<br>
2021-02-27 16:02:59 +00:00
The link returns basic addressbook upon initial request or request with no <code>If-Match-None</code> header.<br>
Following requests will return full alive hosts list.
2021-02-21 16:37:27 +00:00
</p>
<p>
<b>Static links to lists:</b><br>
2021-02-27 16:02:59 +00:00
Lists are updated every 4 hours.
2021-02-21 16:37:27 +00:00
<ul>
<li>Basic list: <a href="/export/hosts-basic.txt">/export/hosts-basic.txt</a> - contains short list of alive popular services</li>
<li>Alive list: <a href="/export/hosts.txt">/export/hosts.txt</a></li>
<li>Whole list: <a href="/export/hosts-all.txt">/export/hosts-all.txt</a></li>
</ul>
</p>
<p>
<b>Rules:</b><br>
2021-02-27 16:02:59 +00:00
Although there are no specific rules for domain registration, we do have the policy on dead domain records.<br>
2021-06-27 16:05:27 +00:00
Your domain will become open for registration again (disabled) if it is dead for:
2021-02-21 16:37:27 +00:00
<ul>
2021-06-27 16:05:27 +00:00
<li> {{ delnewdays }} days if last seen less than {{ newdays }} days since registration</li>
2021-07-15 22:37:33 +00:00
<li> {{ delactdays }} days if last seen less than {{ olddays }} days since registration</li>
2021-06-27 16:05:27 +00:00
<li> {{ delstabdays }} days if last seen more than {{ olddays }} days since registration</li>
2021-02-21 16:37:27 +00:00
</ul>
2021-06-13 04:55:08 +00:00
Domains that are inaccessible before the disabling date for {{ hidedays }} days, will be hidden from <a href="/alive">alive</a> list, removed from export lists, but will still be checked every hour.<br>
When domain dead for amount days stated above, it will be marked as disabled, opened for registration and will be checked once a day for availability at {{ fullhour }} o'clock UTC.
2021-02-21 16:37:27 +00:00
</p>
2021-07-15 22:37:33 +00:00
{% if activation %}
2021-02-21 16:37:27 +00:00
<p>
2021-07-15 22:37:33 +00:00
<b>Activation:</b><br>
Your domain will appear in the listing within {{ actdelay }} hour(s). However, your domain must be alive within the last {{ actseen }} hour(s) before the activation is due.
2021-02-21 16:37:27 +00:00
</p>
{% endif %}
{% if fetcher and subscrs | length > 0 %}
<p>
<b>External subscriptions:</b><br>
2021-02-27 16:02:59 +00:00
Our service fetches external subscription updates daily. List of external services:
2021-02-21 16:37:27 +00:00
<ul>
{% for subscr in subscrs %}
<li> {{ subscr .name }} </li>
{% endfor %}
</ul>
</p>
2021-07-15 22:37:33 +00:00
{% endif %}
2022-06-12 00:01:02 +00:00
<p>
<b>API:</b><br>
Service providing minimal JSON API for requesting information about domains in our base.<br>
<pre><i>/api/<command>/[query]</i><br></pre>
<ul>
<li><i>command</i> - required field, possible values:
<ul>
<li><i>all</i> returns all alive domains b32 and last seen timestamp</li>
<li><i>status</i> returns base64, base32 and last seen timestamp for requested domain</li>
</ul>
</li>
<li><i>query</i> - domain for <i>status</i> query
</ul>
</p>
2021-07-15 22:37:33 +00:00
<p>
<b>Terms of use:</b>
<ul>
<li>Service owner is not responsible about content published on submitted domains</li>
<li>Submited domains processed automaticly. No human involved in process</li>
2021-09-13 17:21:23 +00:00
<li>Domains with offensive content will be hidden from the list (currently hidden {% if all %} <a href="/hidden?all"> {% endif %} {{ blackcnt }} domain(s) {% if all %} </a> {% endif %} )
2021-07-15 22:37:33 +00:00
<ul>
<li>they can be found using the search and jump links</li>
2022-06-12 00:01:02 +00:00
<li>adding <i>?all</i> to page address (like <i>/alive?all</i>) will show them</li>
2021-07-15 22:37:33 +00:00
<li>such domains won't be exported to subscriptions</li>
<li>if you disagree with some eepsite's content - we won't do anything, only specific categories might be hidden</li>
</ul>
</li>
<li>Any complaints should be sent to <a href="http://sportloto.i2p" target="_blank">Sportloto</a></li>
<li>You can contact with reg.i2p site owners on Ilita IRC network (irc.ilita.i2p or irc.r4sas.i2p or irc.acetone.i2p) at #dev, #en or #ru channels</li>
</ul>
</p>
2021-02-21 16:37:27 +00:00
</div>
{% endblock %}