about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-07-23 21:58:40 -0400
committerGitHub <noreply@github.com>2019-07-23 21:58:40 -0400
commit72ef4786e160147660055787650b138fc2a69c40 (patch)
tree8e83bd43f5a288d4f1b21c85ac4a8144883269ee /nixos/doc
parenta47962010dae5dab891957d58526a90233b27d4d (diff)
parent9b970d07f384f31737cb3d598913aba16dbc59bb (diff)
downloadnixlib-72ef4786e160147660055787650b138fc2a69c40.tar
nixlib-72ef4786e160147660055787650b138fc2a69c40.tar.gz
nixlib-72ef4786e160147660055787650b138fc2a69c40.tar.bz2
nixlib-72ef4786e160147660055787650b138fc2a69c40.tar.lz
nixlib-72ef4786e160147660055787650b138fc2a69c40.tar.xz
nixlib-72ef4786e160147660055787650b138fc2a69c40.tar.zst
nixlib-72ef4786e160147660055787650b138fc2a69c40.zip
Merge pull request #64151 from aanderse/httpd-extraSubservices
nixos/httpd: module cleanup
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-1909.xml17
1 files changed, 14 insertions, 3 deletions
diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml
index 77ba31811648..bde48bc16afd 100644
--- a/nixos/doc/manual/release-notes/rl-1909.xml
+++ b/nixos/doc/manual/release-notes/rl-1909.xml
@@ -149,9 +149,20 @@
    </listitem>
    <listitem>
     <para>
-     Several of the apache subservices have been replaced with full NixOS
-     modules including LimeSurvey, WordPress, and Zabbix.
-     These modules can be enabled using the <option>services.limesurvey.enable</option>,
+     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>
+     The option <option>services.httpd.extraSubservices</option> has been
+     marked as deprecated. You may still use this feature, but it will be
+     removed in a future release of NixOS. You are encouraged to convert any
+     httpd subservices you may have written to a full NixOS module.
+    </para>
+    <para>
+     Most of the httpd subservices packaged with NixOS have been replaced with
+     full NixOS modules including LimeSurvey, WordPress, and Zabbix. These
+     modules can be enabled using the <option>services.limesurvey.enable</option>,
      <option>services.wordpress.enable</option>, and <option>services.zabbixWeb.enable</option> options.
     </para>
    </listitem>