summaryrefslogtreecommitdiffstats
path: root/nixos/tests/dokuwiki.nix
diff options
context:
space:
mode:
author1000101 <b1000101@pm.me>2020-08-03 15:26:38 +0200
committer1000101 <b1000101@pm.me>2020-08-03 16:10:05 +0200
commit850b3ea028c312ae7e59584e83f0ec694d052b19 (patch)
tree5be5979f9878bff56858ae6cd54935c53c5a09a0 /nixos/tests/dokuwiki.nix
parent4181ae25bffd50169b3c2ff951db3b7f84afa8c0 (diff)
nixos/dokuwiki: drop SSL forcing
Diffstat (limited to 'nixos/tests/dokuwiki.nix')
-rw-r--r--nixos/tests/dokuwiki.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/nixos/tests/dokuwiki.nix b/nixos/tests/dokuwiki.nix
index 4f00521c2021..260316a3833b 100644
--- a/nixos/tests/dokuwiki.nix
+++ b/nixos/tests/dokuwiki.nix
@@ -39,18 +39,10 @@ in {
services.dokuwiki."site1.local" = {
aclUse = false;
superUser = "admin";
- nginx = {
- forceSSL = false;
- enableACME = false;
- };
};
services.dokuwiki."site2.local" = {
aclUse = true;
superUser = "admin";
- nginx = {
- forceSSL = false;
- enableACME = false;
- };
templates = [ template-bootstrap3 ];
plugins = [ plugin-icalevents ];
};