diff --git a/src/cloudron.js b/src/cloudron.js index e73956c5b..999f49a2d 100644 --- a/src/cloudron.js +++ b/src/cloudron.js @@ -578,7 +578,7 @@ function addDnsRecords(callback) { records.push(webadminRecord); records.push(dkimRecord); } else { - // for non-custom domains, we show a nakeddomain.html page + // for non-custom domains, we show a noapp.html page var nakedDomainRecord = { subdomain: '', type: 'A', values: [ ip ] }; records.push(nakedDomainRecord); diff --git a/webadmin/src/js/main.js b/webadmin/src/js/main.js index a425c609e..969ec1498 100644 --- a/webadmin/src/js/main.js +++ b/webadmin/src/js/main.js @@ -149,7 +149,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route', // support local development with localhost check if (window.location.hostname !== status.adminFqdn && window.location.hostname !== 'localhost') { - window.location.href = 'https://' + status.adminFqdn + '/nakeddomain.html'; + window.location.href = 'https://' + status.adminFqdn + '/noapp.html'; return; } diff --git a/webadmin/src/nakeddomain.html b/webadmin/src/noapp.html similarity index 100% rename from webadmin/src/nakeddomain.html rename to webadmin/src/noapp.html