Skip to content

Commit

Permalink
prep for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkp committed Jan 12, 2020
1 parent 84a484a commit 24effdb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 47 deletions.
4 changes: 2 additions & 2 deletions LetsEncrypt.SiteExtension.Core/AppSettingsAuthConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public string DashboardConnectionString
{
get
{
return ConfigurationManager.ConnectionStrings[webjobDashboard].ConnectionString;
return ConfigurationManager.ConnectionStrings[webjobDashboard]?.ConnectionString;
}
}

Expand All @@ -125,7 +125,7 @@ public string StorageConnectionString
{
get
{
return ConfigurationManager.ConnectionStrings[webjobStorage].ConnectionString;
return ConfigurationManager.ConnectionStrings[webjobStorage]?.ConnectionString;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>letsencrypt.azure.core</id>
<title>Azure Let's Encrypt</title>
<version>1.0.4</version>
<version>1.0.5</version>
<authors>SJKP</authors>
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion LetsEncrypt.WebAppOnly.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>letsencrypt.webapponly</id>
<title>Azure Let's Encrypt (No Web Jobs)</title>
<version>1.0.4</version>
<version>1.0.5</version>
<authors>SJKP</authors>
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion LetsEncrypt.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>letsencrypt</id>
<title>Azure Let's Encrypt</title>
<version>1.0.4</version>
<version>1.0.5</version>
<authors>SJKP</authors>
<licenseUrl>http://opensource.org/licenses/Apache-2.0</licenseUrl>
<projectUrl>https://github.com/sjkp/letsencrypt-siteextension</projectUrl>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Let's Encrypt Site Extension
[![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/)
[![Build status](https://dev.azure.com/letsencrypt/letsencrypt/_apis/build/status/LetsEncrypt.SiteExtension.FullFramework)](https://dev.azure.com/letsencrypt/letsencrypt/_build/latest?definitionId=2)

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.

Expand All @@ -19,7 +19,7 @@ https://github.com/sjkp/letsencrypt-siteextension/wiki/How-to-install
* 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).
* 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
* 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
* Wildcard domains are not supported (yet), to track the progress of the feature: https://github.com/sjkp/letsencrypt-siteextension/issues/183
* 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

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

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.

To see an example of an ARM template installation look at [azuredeploy.json](LetsEncrypt.ResourceGroup/Templates/azuredeploy.json)
To see an example of an ARM template installation look at [azuredeploy.json](LetsEncrypt.ResourceGroup/Templates/azuredeploy.json)
39 changes: 0 additions & 39 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 24effdb

Please sign in to comment.