summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
author1000101 <b1000101@pm.me>2020-08-03 16:04:43 +0200
committer1000101 <b1000101@pm.me>2020-08-03 16:26:17 +0200
commit7d938b5e47923c05a053e970611a260cba200a7e (patch)
tree0425f512b6cafa35b55055aa00b4b37d8fc7260d /nixos/doc
parent850b3ea028c312ae7e59584e83f0ec694d052b19 (diff)
downloadnixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar.gz
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar.bz2
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar.lz
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar.xz
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.tar.zst
nixpkgs-7d938b5e47923c05a053e970611a260cba200a7e.zip
release-notes/rl-2009: document dokuwiki incompatibility
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2009.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2009.xml b/nixos/doc/manual/release-notes/rl-2009.xml
index 2225619d481..35ab42e7236 100644
--- a/nixos/doc/manual/release-notes/rl-2009.xml
+++ b/nixos/doc/manual/release-notes/rl-2009.xml
@@ -588,6 +588,31 @@ systemd.services.nginx.serviceConfig.ReadWritePaths = [ "/var/www" ];
       When updating Graylog from a version before 3.3.3 make sure to check the Graylog <link xlink:href="https://www.graylog.org/post/announcing-graylog-v3-3-3">release info</link> for information on how to avoid the issue.
     </para>
    </listitem>
+   <listitem>
+    <para>
+     The <literal>dokuwiki</literal> module has changed to multi-instance, using submodules.
+     Therefore, it is now mandatory to name each instance. Moreover, forcing SSL by default has been dropped, so
+     <literal>nginx.forceSSL</literal> and <literal>nginx.enableACME</literal> are no longer set to <literal>true</literal>.
+     To continue using your service with the original SSL settings, you have to adjust the original config, e.g.:
+<programlisting>
+services.dokuwiki = {
+  enable = true;
+  ...
+};
+</programlisting>
+     To something similar:
+<programlisting>
+services.dokuwiki."mywiki" = {
+  enable = true;
+  nginx = {
+    forceSSL = true;
+    enableACME = true;
+  };
+  ...
+};
+</programlisting>
+    </para>
+   </listitem>
   </itemizedlist>
  </section>