Domain registry project http://reg.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

67 lines
2.5 KiB

{% 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>
Service works, hosts check done every hour.<br>
Supported commands:
<ul>
<li>adding of hosts for 2LD domains (example.i2p)</li>
<li>adding subdomains (addsubdomain)</li>
<li>adding/changing destination (adddest, changedest) - destination will be replaced with new one, old will be purged</li>
</ul>
</p>
<p>
<b>Subscription:</b><br>
For addressbook subscription use <a href="/hosts.txt">/hosts.txt</a> file.<br>
That link returns basic addressbook if request sent first time or without <code>If-Match-None</code> header.<br>
On next requests it will return full alive hosts list.
</p>
<p>
<b>Static links to lists:</b><br>
Lists updated every 4 hours.
<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>
Here no particular rules about registering domains, but we have some limitations about handling dead domain records.<br>
Your domain will be open for registration if it has been dead for:
<ul>
<li>{{ delnewdays }} days if registered less than {{ newdays }} days ago</li>
<li>{{ delolddays }} days if registered more than {{ newdays }} days ago</li>
</ul>
</p>
{% if approval %}
<p>
<b>Approval:</b><br>
Domain will be approved after {{ apprdelay }} hours, but only if it has been alive not more than {{ apprseen }} hours ago when approval time is reached.
</p>
{% endif %}
{% if fetcher and subscrs|length > 0 %}
<p>
<b>External subscriptions:</b><br>
Our service fetching updates from external subscriptions once a day. List of external services:
<ul>
{% for subscr in subscrs %}
<li>{{ subscr.name }}</li>
{% endfor %}
</ul>
</p>
</div>
{% endif %}
{% endblock %}