Skip to content

Commit

Permalink
nixos/acme: Also fix ordering for apache
Browse files Browse the repository at this point in the history
  • Loading branch information
arianvp committed Jun 15, 2020
1 parent 681cc10 commit cfd672a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,7 @@ in
wantedBy = [ "multi-user.target" ];
wants = concatLists (map (hostOpts: [ "acme-${hostOpts.hostName}.service" "acme-selfsigned-${hostOpts.hostName}.service" ]) vhostsACME);
after = [ "network.target" "fs.target" ] ++ map (hostOpts: "acme-selfsigned-${hostOpts.hostName}.service") vhostsACME;
before = map (hostOpts: "acme-${hostOpts.hostName}.service") vhostsACME;

path = [ pkg pkgs.coreutils pkgs.gnugrep ];

Expand Down

0 comments on commit cfd672a

Please sign in to comment.