Skip to content

Commit 24effdb

Browse files
committed
prep for next release.
1 parent 84a484a commit 24effdb

File tree

6 files changed

+8
-47
lines changed

6 files changed

+8
-47
lines changed

LetsEncrypt.SiteExtension.Core/AppSettingsAuthConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public string DashboardConnectionString
116116
{
117117
get
118118
{
119-
return ConfigurationManager.ConnectionStrings[webjobDashboard].ConnectionString;
119+
return ConfigurationManager.ConnectionStrings[webjobDashboard]?.ConnectionString;
120120
}
121121
}
122122

@@ -125,7 +125,7 @@ public string StorageConnectionString
125125
{
126126
get
127127
{
128-
return ConfigurationManager.ConnectionStrings[webjobStorage].ConnectionString;
128+
return ConfigurationManager.ConnectionStrings[webjobStorage]?.ConnectionString;
129129
}
130130
}
131131

LetsEncrypt.SiteExtension.Core/LetsEncrypt.Azure.Core.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>letsencrypt.azure.core</id>
55
<title>Azure Let's Encrypt</title>
6-
<version>1.0.4</version>
6+
<version>1.0.5</version>
77
<authors>SJKP</authors>
88
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
99
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>

LetsEncrypt.WebAppOnly.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>letsencrypt.webapponly</id>
55
<title>Azure Let's Encrypt (No Web Jobs)</title>
6-
<version>1.0.4</version>
6+
<version>1.0.5</version>
77
<authors>SJKP</authors>
88
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
99
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>

LetsEncrypt.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>letsencrypt</id>
55
<title>Azure Let's Encrypt</title>
6-
<version>1.0.4</version>
6+
<version>1.0.5</version>
77
<authors>SJKP</authors>
88
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
99
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Let's Encrypt Site Extension
2-
[![Build Status](https://dev.azure.com/letsencrypt/letsencrypt/_apis/build/status/letsencrypt-siteextension.core)](https://dev.azure.com/letsencrypt/letsencrypt/_build/latest?definitionId=1) [![Build status](https://dockerbuildbadges.quelltext.eu/status.svg?organization=sjkp&repository=letsencrypt-azure)](https://hub.docker.com/r/sjkp/letsencrypt-azure/)
2+
[![Build status](https://dev.azure.com/letsencrypt/letsencrypt/_apis/build/status/LetsEncrypt.SiteExtension.FullFramework)](https://dev.azure.com/letsencrypt/letsencrypt/_build/latest?definitionId=2)
33

44
This Azure Web App Site Extension enables easy installation and configuration of [Let's Encrypt](https://letsencrypt.org/) issued SSL certificates for you custom domain names.
55

@@ -19,7 +19,7 @@ https://github.com/sjkp/letsencrypt-siteextension/wiki/How-to-install
1919
* If you publish your project from Visual Studio with the "Delete Existing files" option, you will remove the web jobs the site extension uses to renew the certificate once they expire every 3 months (you can renew them manually or install the site extension again after publish).
2020
* The site-extension can now work with [Azure App Service Local Cache](https://azure.microsoft.com/en-us/documentation/articles/app-service-local-cache/), however you must do a little manual work, see https://github.com/sjkp/letsencrypt-siteextension/wiki/Azure-Function,-Multi-Region,-Local-Cache-support
2121
* If you use the "Run From Zip" deployment method, please take a look at this: https://github.com/sjkp/letsencrypt-siteextension/issues/239#issuecomment-440785470
22-
* Wildcard domains are not supported (yet), to track the progress of the feature: https://github.com/sjkp/letsencrypt-siteextension/issues/183
22+
* Wildcard domains are not supported, (and will not be supposed in the site-extension), if you are interested in wildcard support check https://github.com/sjkp/letsencrypt-azure
2323

2424
## How to troubleshoot
2525
https://github.com/sjkp/letsencrypt-siteextension/wiki/Troubleshoot
@@ -60,4 +60,4 @@ As it can be seen from the list of App Settings a service principal is needed. T
6060

6161
Besides the App Settings, the two Azure Web Job required connection strings ```AzureWebJobsStorage``` and ```AzureWebJobsDashboard``` must also exists, as the extension relies on an internal Web Job to renew the certificates once they expire.
6262

63-
To see an example of an ARM template installation look at [azuredeploy.json](LetsEncrypt.ResourceGroup/Templates/azuredeploy.json)
63+
To see an example of an ARM template installation look at [azuredeploy.json](LetsEncrypt.ResourceGroup/Templates/azuredeploy.json)

azure-pipelines.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)