Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
b950b04e
Unverified
Commit
b950b04e
authored
Oct 29, 2022
by
neil
Committed by
GitHub
Oct 29, 2022
Browse files
Merge pull request #4371 from PeterDaveHello/use-https
Use encrypted https instead of plain-text http when we can
parents
c9a55f39
3c933158
Changes
8
Hide whitespace changes
Inline
Side-by-side
.github/workflows/DNS.yml
View file @
b950b04e
...
...
@@ -172,7 +172,7 @@ jobs:
shell
:
cmd
-
name
:
Install cygwin additional packages
run
:
|
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http
s
://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git
shell
:
cmd
-
name
:
Set ENV
shell
:
cmd
...
...
.github/workflows/NetBSD.yml
View file @
b950b04e
...
...
@@ -61,7 +61,7 @@ jobs:
nat
:
|
"8080": "80"
prepare
:
|
export PKG_PATH="http://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r|cut -f '1 2' -d.)/All/"
export PKG_PATH="http
s
://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r|cut -f '1 2' -d.)/All/"
pkg_add curl socat
usesh
:
true
copyback
:
false
...
...
.github/workflows/Windows.yml
View file @
b950b04e
...
...
@@ -57,7 +57,7 @@ jobs:
shell
:
cmd
-
name
:
Install cygwin additional packages
run
:
|
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git,xxd
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http
s
://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git,xxd
shell
:
cmd
-
name
:
Set ENV
shell
:
cmd
...
...
dnsapi/dns_acmeproxy.sh
View file @
b950b04e
#!/usr/bin/env sh
## Acmeproxy DNS provider to be used with acmeproxy (http://github.com/mdbraber/acmeproxy)
## Acmeproxy DNS provider to be used with acmeproxy (http
s
://github.com/mdbraber/acmeproxy)
## API integration by Maarten den Braber
##
## Report any bugs via https://github.com/mdbraber/acme.sh
...
...
dnsapi/dns_gandi_livedns.sh
View file @
b950b04e
#!/usr/bin/env sh
# Gandi LiveDNS v5 API
# http://doc.livedns.gandi.net/
# http
s
://doc.livedns.gandi.net/
# currently under beta
#
# Requires GANDI API KEY set in GANDI_LIVEDNS_KEY set as environment variable
...
...
dnsapi/dns_kinghost.sh
View file @
b950b04e
...
...
@@ -2,7 +2,7 @@
############################################################
# KingHost API support #
# http://api.kinghost.net/doc/ #
# http
s
://api.kinghost.net/doc/ #
# #
# Author: Felipe Keller Braz <felipebraz@kinghost.com.br> #
# Report Bugs here: https://github.com/kinghost/acme.sh #
...
...
dnsapi/dns_leaseweb.sh
View file @
b950b04e
...
...
@@ -3,7 +3,7 @@
#Author: Rolph Haspers <r.haspers@global.leaseweb.com>
#Utilize leaseweb.com API to finish dns-01 verifications.
#Requires a Leaseweb API Key (export LSW_Key="Your Key")
#See http://developer.leaseweb.com for more information.
#See http
s
://developer.leaseweb.com for more information.
######## Public functions #####################
LSW_API
=
"https://api.leaseweb.com/hosting/v2/domains/"
...
...
dnsapi/dns_namecheap.sh
View file @
b950b04e
...
...
@@ -82,7 +82,7 @@ _get_root() {
_debug
"Failed domain lookup via domains.getList api call. Trying domain lookup via domains.dns.getHosts api."
# The above "getList" api will only return hosts *owned* by the calling user. However, if the calling
# user is not the owner, but still has administrative rights, we must query the getHosts api directly.
# See this comment and the official namecheap response: http://disq.us/p/1q6v9x9
# See this comment and the official namecheap response: http
s
://disq.us/p/1q6v9x9
if
!
_get_root_by_getHosts
"
$fulldomain
"
;
then
return
1
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment