-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- ssl for wpsubdom removed, wildcard is enough. - ssl-root-path fixed. - some minor code improvements.
- Loading branch information
Showing
5 changed files
with
33 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# Let's Encrypt manual mode (for Reverse Proxy sites) | ||
sudo mkdir -p $value/.well-known/acme-challenge | ||
sudo touch $value/.well-known/acme-challenge/$CERTBOT_TOKEN | ||
sudo echo $CERTBOT_VALIDATION > $value/.well-known/acme-challenge/$CERTBOT_TOKEN | ||
source /opt/webinoly/lib/general | ||
sslpath=$(conf_read temp-path) | ||
sudo mkdir -p $sslpath/.well-known/acme-challenge | ||
sudo touch $sslpath/.well-known/acme-challenge/$CERTBOT_TOKEN | ||
sudo echo $CERTBOT_VALIDATION > $sslpath/.well-known/acme-challenge/$CERTBOT_TOKEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# Let's Encrypt manual mode (for Reverse Proxy sites) | ||
rm -rf $value/.well-known | ||
source /opt/webinoly/lib/general | ||
sslpath=$(conf_read temp-path) | ||
sudo rm -rf $sslpath/.well-known |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters