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.
 
 
 
 

71 lines
3.2 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 is Up. Hosts check is 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 is replaced with the new one, old destination is purged</li>
<li>adding domain alias (addname) - alias must be 2LD (example.i2p). For registering subdomains as aliases please use addsubdomain command</li>
</ul>
</p>
<p>
<b>Subscription:</b><br>
For addressbook subscription use <a href="/hosts.txt">/hosts.txt</a> file.<br>
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.
</p>
<p>
<b>Static links to lists:</b><br>
Lists are 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>
Although there are no specific rules for domain registration, we do have the policy on dead domain records.<br>
Your domain will become open for registration again (disabled) if it is dead for:
<ul>
<li>{{ delnewdays }} days if last seen less than {{ newdays }} days since registration</li>
<li>{{ delapprdays }} days if last seen less than {{ olddays }} days since registration</li>
<li>{{ delstabdays }} days if last seen more than {{ olddays }} days since registration</li>
</ul>
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.
</p>
{% if approval %}
<p>
<b>Approval:</b><br>
Your domain will generally be approved within {{ apprdelay }} hour(s). However, your domain must be alive within the last {{ apprseen }} hour(s) before the approval is due.
</p>
{% endif %}
{% if fetcher and subscrs|length > 0 %}
<p>
<b>External subscriptions:</b><br>
Our service fetches external subscription updates daily. List of external services:
<ul>
{% for subscr in subscrs %}
<li>{{ subscr.name }}</li>
{% endfor %}
</ul>
</p>
</div>
{% endif %}
{% endblock %}