Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v9: Health Check still references web.config instead of appsettings.json #11600

Merged
merged 4 commits into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Umbraco.Web.UI/umbraco/config/lang/en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2262,11 +2262,11 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="httpsCheckExpiringCertificate">Your website's SSL certificate is expiring in %0% days.</key>
<key alias="healthCheckInvalidUrl">Error pinging the URL %0% - '%1%'</key>
<key alias="httpsCheckIsCurrentSchemeHttps">You are currently %0% viewing the site using the HTTPS scheme.</key>
<key alias="httpsCheckConfigurationRectifyNotPossible">The appSetting 'Umbraco.Core.UseHttps' is set to 'false' in
your web.config file. Once you access this site using the HTTPS scheme, that should be set to 'true'.
<key alias="httpsCheckConfigurationRectifyNotPossible">The appSetting 'Umbraco:CMS:Global:UseHttps' is set to 'false' in
your appSettings.json file. Once you access this site using the HTTPS scheme, that should be set to 'true'.
</key>
<key alias="httpsCheckConfigurationCheckResult">The appSetting 'Umbraco.Core.UseHttps' is set to '%0%' in your
web.config file, your cookies are %1% marked as secure.
<key alias="httpsCheckConfigurationCheckResult">The appSetting 'Umbraco:CMS:Global:UseHttps' is set to '%0%' in your
appSettings.json file, your cookies are %1% marked as secure.
</key>
<!-- The following keys don't get tokens passed in -->
<key alias="compilationDebugCheckSuccessMessage">Debug compilation mode is disabled.</key>
Expand Down
9 changes: 4 additions & 5 deletions src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2339,12 +2339,11 @@ To manage your website, simply open the Umbraco backoffice and start adding cont
<key alias="httpsCheckExpiringCertificate">Your website's SSL certificate is expiring in %0% days.</key>
<key alias="healthCheckInvalidUrl">Error pinging the URL %0% - '%1%'</key>
<key alias="httpsCheckIsCurrentSchemeHttps">You are currently %0% viewing the site using the HTTPS scheme.</key>
<key alias="httpsCheckConfigurationRectifyNotPossible">The configuration value 'Umbraco:CMS:Global:UseHttps' is set
to 'false' in your web.config file. Once you access this site using the HTTPS scheme, that should be set to
'true'.
<key alias="httpsCheckConfigurationRectifyNotPossible">The appSetting 'Umbraco:CMS:Global:UseHttps' is set to 'false' in
your appSettings.json file. Once you access this site using the HTTPS scheme, that should be set to 'true'.
</key>
<key alias="httpsCheckConfigurationCheckResult">The configuration value 'Umbraco:CMS:Global:UseHttps' is set to
'%0%' in your web.config file, your cookies are %1% marked as secure.
<key alias="httpsCheckConfigurationCheckResult">The appSetting 'Umbraco:CMS:Global:UseHttps' is set to '%0%' in your
appSettings.json file, your cookies are %1% marked as secure.
</key>
<!-- The following keys don't get tokens passed in -->
<key alias="compilationDebugCheckSuccessMessage">Debug compilation mode is disabled.</key>
Expand Down
9 changes: 8 additions & 1 deletion src/Umbraco.Web.UI/umbraco/config/lang/fr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1962,7 +1962,14 @@ Pour gérer votre site, ouvrez simplement le backoffice Umbraco et commencez à
<key alias="httpsCheckExpiringCertificate">Le certificat SSL de votre site web va expirer dans %0% jours.</key>
<key alias="healthCheckInvalidUrl">Erreur en essayant de contacter l'URL %0% - '%1%'</key>
<key alias="httpsCheckIsCurrentSchemeHttps">Vous êtes actuellement %0% à voir le site via le schéma HTTPS.</key>
<!-- The following keys don't get tokens passed in -->
<key alias="httpsCheckConfigurationRectifyNotPossible">
L'appSetting 'Umbraco:CMS:Global:UseHttps' se trouve à 'false' dans votre fichier appSettings.json.
Une fois que vous aurez accès à ce site via le schema HTTPS, il faudra la mettre à 'true'.
</key>
<key alias="httpsCheckConfigurationCheckResult">
L'appSetting 'Umbraco:CMS:Global:UseHttps' se trouve à '%0%' dans votre fichier
appSettings.json, vos cookies sont %1% marqués comme 'secured'.
</key> <!-- The following keys don't get tokens passed in -->
<key alias="compilationDebugCheckSuccessMessage">Le mode de compilation Debug est désactivé.</key>
<key alias="compilationDebugCheckErrorMessage">Le mode de compilation Debug est actuellement activé. Il est recommandé de désactiver ce paramètre avant la mise en ligne.</key>
<!-- The following keys get these tokens passed in:
Expand Down