Make wiki public/private-ness configurable from the start #18

Closed
opened 2020-11-08 09:16:56 +00:00 by decentral1se · 1 comment
Owner

Currently private by default.

Currently private by default.
Author
Owner
diff --git a/LocalSettings.php.tmpl b/LocalSettings.php.tmpl
index f55d0b6..7d4460a 100644
--- a/LocalSettings.php.tmpl
+++ b/LocalSettings.php.tmpl
@@ -120,7 +120,7 @@ $wgDiff3 = "/usr/bin/diff3";
 # The following permissions were set based on your choice in the installer
 $wgGroupPermissions['*']['createaccount'] = false;
 $wgGroupPermissions['*']['edit'] = false;
-$wgGroupPermissions['*']['read'] = false;
+$wgGroupPermissions['*']['read'] = true;
 
 ## Default skin: you can change the default skin. Use the internal symbolic
 ## names, ie 'vector', 'monobook':

Works to make it public.

```diff diff --git a/LocalSettings.php.tmpl b/LocalSettings.php.tmpl index f55d0b6..7d4460a 100644 --- a/LocalSettings.php.tmpl +++ b/LocalSettings.php.tmpl @@ -120,7 +120,7 @@ $wgDiff3 = "/usr/bin/diff3"; # The following permissions were set based on your choice in the installer $wgGroupPermissions['*']['createaccount'] = false; $wgGroupPermissions['*']['edit'] = false; -$wgGroupPermissions['*']['read'] = false; +$wgGroupPermissions['*']['read'] = true; ## Default skin: you can change the default skin. Use the internal symbolic ## names, ie 'vector', 'monobook': ``` Works to make it public.
This repo is archived. You cannot comment on issues.
No Label
No Milestone
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: coop-cloud/mediawiki#18
No description provided.