Support hyphenatedSubdomains property in domains view

This commit is contained in:
Johannes Zellner
2018-08-22 11:54:37 +02:00
parent fe23551b04
commit 53a34d9352
2 changed files with 18 additions and 2 deletions

View File

@@ -100,6 +100,16 @@
<input type="text" class="form-control" ng-model="domainConfigure.zoneName" name="zoneName" ng-disabled="domainConfigure.busy">
</div>
<div class="form-group">
<label class="control-label">Hyphenated Subdomains</label>
<p>Create app subdomains with a hyphen instead of real subdomains (instead of app.sub.domain.com -> app-sub.domain.com)</p>
<div class="checkbox">
<label>
<input type="checkbox" ng-model="domainConfigure.hyphenatedSubdomains" name="hyphenatedSubdomains" ng-disabled="domainConfigure.busy"/>Enabled
</label>
</div>
</div>
<div class="form-group">
<label class="control-label">Certificate Provider</label>
<select class="form-control" ng-model="domainConfigure.tlsConfig.provider" ng-options="a.value as a.name for a in tlsProvider"></select>