diff --git a/content/_index.fr.md b/content/_index.fr.md index 435e0e8..9b73c0a 100644 --- a/content/_index.fr.md +++ b/content/_index.fr.md @@ -2,6 +2,22 @@ title = "dnsmanager - libérez vos zones" +++ -# dnsmanager +dnsmanager est une interface web pour permettre aux utilisateurices d'enregister un nom DNS et de gérer leur zone. C'est le logiciel derrière les coulisses de [netlib.re](https://netlib.re), un service qui fournit de noms pour tout le monde sur Internet. + +[netlib.re](https://netlib.re) est sympathiquement opéré par [Alsace Réseau Neutre](https://arn-fai.net), un Fournisseur d'Accès à Internet neutre et sans-profit situé en Alsace (France). Ne sois pas timide et viens poser tes questions ! + +# Fonctionalités + +- [x] Comptes utilisateurice +- [x] Édition de zone en mode simple et expert +- [x] Mise à jour d'IP automatique à la DynDNS +- [x] Multiple zones clientes et parentes +- [ ] Délégation DNS +- [ ] Authentification tierce (LDAP, OpenID Connect) +- [ ] API client documentée +- [ ] CAPTCHA? + +# Installation + +Se référer au [dépôt du projet](https://github.com/KaneRoot/dnsmanager) pour les instructions d'installation. -dnsmanager est un logiciel convivial diff --git a/content/_index.md b/content/_index.md index 42c0a55..7199029 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,6 +2,22 @@ title = "dnsmanager - free your zones" +++ -# dnsmanager +dnsmanager is a web interface to enable users to register DNS names and manage their zone. It is the software powering [netlib.re](https://netlib.re), a service to provide names for everyone on the Internet. + +[netlib.re](https://netlib.re) is kindly operated by [Alsace Réseau Neutre](https://arn-fai.net), a neutral and non-profit Internet Service Provider based in Alsace, France. Don't be shy, come and ask questions! + +# Features + +- [x] User accounts +- [x] Simple and expert modes for zone edition +- [x] DynDNS-like automatic IP updates +- [x] Multiple client and parent zones +- [ ] DNS delegation +- [ ] 3rd party authentication (LDAP, OpenID Connect) +- [ ] Documented client-side API +- [ ] CAPTCHA? + +# Setup + +Please refer to the [project's repository](https://github.com/KaneRoot/dnsmanager) for setup instructions. -DNS manager is nice and friendly software. diff --git a/content/faq/index.fr.md b/content/faq/index.fr.md index ff83275..ff2cd82 100644 --- a/content/faq/index.fr.md +++ b/content/faq/index.fr.md @@ -2,10 +2,14 @@ title = "FAQ" +++ -# Comment installer dnsmanager? +# Comment installer dnsmanager Le [README](https://github.com/KaneRoot/dnsmanager) contient les instructions pour installer dnsmanager. -# dnsmanager supporte-t-il la délégation? +# dnsmanager supporte-t-il la délégation ? Pour le moment, dnsmanager ne sait pas déléguer une zone. Cette fonctionnalité sera probablement implémentée dans le futur. + +# dnsmanager supporte-t-il l'authentification tierce ? + +Pour le moment, dnsmanager ne sait pas gérer un serveur d'authentification tierce (par exemple LDAP). Ce sera probablement implémenté dans le futur. diff --git a/content/faq/index.md b/content/faq/index.md index 781f1a9..c29fd65 100644 --- a/content/faq/index.md +++ b/content/faq/index.md @@ -9,3 +9,7 @@ See the project [README](https://github.com/KaneRoot/dnsmanager) for setup instr # Does dnsmanager support delegation? At the moment, dnsmanager cannot delegate zones although this feature is on the roadmap. + +# Does dnsmanager support 3rd party auth? + +At the moment, dnsmanager does not support an external authentication service such as LDAP although this feature is on the roadmap. diff --git a/templates/index.html b/templates/index.html index cdd010a..5f6aa32 100644 --- a/templates/index.html +++ b/templates/index.html @@ -22,9 +22,7 @@
{% block main %} - {#{% set home = get_section(path="_index.md").content %}#} - {% set home = load_data(url="https://raw.githubusercontent.com/KaneRoot/dnsmanager/master/readme.markdown") %} - {{ home | markdown | safe }} + {{ section.content | markdown | safe }} {% endblock %}