make ssl test more robust
This commit is contained in:
parent
630dc8005b
commit
446f57dd23
1 changed files with 14 additions and 2 deletions
|
@ -103,8 +103,20 @@ in
|
||||||
"multi3.example.com" = mkVirtualHost "multi3" config.shb.certs.certs.selfsigned.multi;
|
"multi3.example.com" = mkVirtualHost "multi3" config.shb.certs.certs.selfsigned.multi;
|
||||||
};
|
};
|
||||||
systemd.services.nginx = {
|
systemd.services.nginx = {
|
||||||
after = [ config.shb.certs.certs.selfsigned.top.systemdService config.shb.certs.certs.selfsigned.subdomain.systemdService ];
|
after = [
|
||||||
requires = [ config.shb.certs.certs.selfsigned.top.systemdService config.shb.certs.certs.selfsigned.subdomain.systemdService ];
|
config.shb.certs.certs.selfsigned.top.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.subdomain.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.multi.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.cert1.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.cert2.systemdService
|
||||||
|
];
|
||||||
|
requires = [
|
||||||
|
config.shb.certs.certs.selfsigned.top.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.subdomain.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.multi.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.cert1.systemdService
|
||||||
|
config.shb.certs.certs.selfsigned.cert2.systemdService
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue