nixos/httpd: drop postgresql reference
This commit is contained in:
parent
0fd69629c7
commit
9b970d07f3
@ -148,6 +148,11 @@
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The httpd service no longer attempts to start the postgresql service. If you have come to depend
|
||||||
|
on this behaviour then you can preserve the behavior with the following configuration:
|
||||||
|
<literal>systemd.services.httpd.after = [ "postgresql.service" ];</literal>
|
||||||
|
</para>
|
||||||
<para>
|
<para>
|
||||||
The option <option>services.httpd.extraSubservices</option> has been
|
The option <option>services.httpd.extraSubservices</option> has been
|
||||||
marked as deprecated. You may still use this feature, but it will be
|
marked as deprecated. You may still use this feature, but it will be
|
||||||
|
@ -671,7 +671,7 @@ in
|
|||||||
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
wants = [ "keys.target" ];
|
wants = [ "keys.target" ];
|
||||||
after = [ "network.target" "fs.target" "postgresql.service" "keys.target" ];
|
after = [ "network.target" "fs.target" "keys.target" ];
|
||||||
|
|
||||||
path =
|
path =
|
||||||
[ httpd pkgs.coreutils pkgs.gnugrep ]
|
[ httpd pkgs.coreutils pkgs.gnugrep ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user