mirror of
https://github.com/certbot/certbot.git
synced 2026-07-31 18:34:41 +02:00
add manual http scripts
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
cd $(mktemp -d)
|
||||
mkdir -p .well-known/acme-challenge
|
||||
echo $CERTBOT_VALIDATION > ".well-known/acme-challenge/$CERTBOT_TOKEN"
|
||||
python -m SimpleHTTPServer $http_01_port >/dev/null 2>&1 &
|
||||
echo $!
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
kill $CERTBOT_AUTH_OUTPUT
|
||||
Reference in New Issue
Block a user