Skip to content
Snippets Groups Projects
Select Git revision
  • fa3b39013cce8599ab087ed5ec5922da410fe99c
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

check_conn.cfg.dist

Blame
  • inc_config.sh.dist 1.20 KiB
    # ======================================================================
    #
    # add dns credentials and default params here
    #
    # ======================================================================
    
    
    # ----------------------------------------------------------------------
    # DNS API
    # see https://github.com/acmesh-official/acme.sh/wiki/dnsapi
    # - set the env vars of your dns provider
    # - add provider in ACME_Params="--dns [PROVIDER]"
    # ----------------------------------------------------------------------
    
    # -- for infoblox access 
    # export Infoblox_Creds="[user]:[Passwort]"
    # export Infoblox_Server="infoblox.localhost"
    # export ACME_Params="--dns dns_infoblox"
    
    
    # ----------------------------------------------------------------------
    # general settings
    # ----------------------------------------------------------------------
    
    # set path to acme.sh
    export ACME=../acme.sh/acme.sh
    
    # activate LE staging server for testing ... uncomment it for development
    # and testing purposes
    # export ACME_Params="$ACME_Params --staging"
    
    # where to write certificate data
    # export CM_diracme="./certs"
    
    # place for cnf + csr files
    # export CM_dircsr="./csr"
    
    # ----------------------------------------------------------------------