Skip to content

caddy-dns/neoserv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neoserv (NEOSERV.si) module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Neoserv (using moj.neoserv.si account).

Caddy module name

dns.providers.neoserv

Config examples

To use this module for the ACME DNS challenge, configure the ACME issuer in your Caddy JSON like so:

{
	"module": "acme",
	"challenges": {
		"dns": {
			"provider": {
				"name": "neoserv",
				"username": "NEOSERV_USERNAME",
				"password": "NEOSERV_PASSWORD"
			}
		}
	}
}

or with the Caddyfile:

# globally
{
	acme_dns neoserv {
		username {env.NEOSERV_USERNAME}
		password {env.NEOSERV_PASSWORD}
	}
}
# one site
tls {
	dns neoserv {
		username {env.NEOSERV_USERNAME}
		password {env.NEOSERV_PASSWORD}
	}
}

You can replace {env.NEOSERV_USERNAME} and {env.NEOSERV_PASSWORD} with your actual Neoserv username and password if you prefer to put it directly in your config insead of an environment variable.

About

Caddy module: dns.providers.neoserv

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages