Add missing server_name rule to HTTP redirect block (fixes #160)
parent
989d2b257d
commit
15b2906128
|
@ -315,6 +315,8 @@ export default (domain, domains, global) => {
|
|||
const redirectConfig = [];
|
||||
|
||||
redirectConfig.push(...httpListen(domain));
|
||||
redirectConfig.push(['server_name',
|
||||
`${domain.server.redirectSubdomains.computed ? '.' : ''}${domain.server.domain.computed}`]);
|
||||
|
||||
if (domain.https.certType.computed === 'letsEncrypt') {
|
||||
// Let's encrypt
|
||||
|
|
Loading…
Reference in New Issue