-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php
More file actions
28 lines (28 loc) · 781 Bytes
/
config.php
File metadata and controls
28 lines (28 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* Created by PhpStorm.
* User: simon
* Date: 05.11.17
* Time: 17:16
*/
define("PASSWORD","123456");
define("GETSSLDIR",dirname( dirname(__FILE__) )."/getssl");
define("showhelp",false);
$dnsscripts = [
/*
* example for cloudflare. for each domain is one script needed, providing auth details
* domain and key is given by $1 & $2
*
* fulldomain="$1"
* token="$2"
* email="email@example.com"
* key="key"
*
* see: https://github.com/srvrco/getssl/wiki/DNS-Challenge-example
*/
"cf" => [
"name" => "Cloudflare",
"DNS_ADD_COMMAND" => dirname( dirname(__FILE__) )."/scripts/cf_add_acme_challenge",
"DNS_DEL_COMMAND" => dirname( dirname(__FILE__) )."/scripts/cf_del_acme_challenge",
]
];