Skip to content

luadns/dns

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.

Example Git repository

LuaDNS service allows you to manage DNS settings with git.

This is an example git repository, read more here: http://www.luadns.com/help.html#git-integration

Add a new zone

To add a new zone, create a new file with zone name, appending .lua suffix when using Lua format or .bind when using Bind format. Push your changes with git, the zone and it's records will be added to LuaDNS name servers:

touch example.com.lua
git add example.com.lua
git commit -m "Add example.com zone" example.com.lua
git push

Remove a zone

To remove a zone, remove the file and push the changes to remove zone from LuaDNS name servers:

git rm example.com.lua
git commit -m "Remove example.com zone" example.com.lua
git push

Templates

The .lua files from templates directory of your repository are executed before other .lua files. You can put your global functions and variables there.

Examples: