forked from Zavy86/WikiDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
91 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
.git/ | ||
.idea/ | ||
documents/* | ||
trash/* | ||
.gitignore | ||
.htaccess | ||
development.dockerfile | ||
production.dockerfile | ||
config.inc.php | ||
robots.txt | ||
sitemap.xml | ||
datasets/config.inc.php | ||
datasets/documents/* | ||
datasets/trash/* | ||
!datasets/documents/.gitkeep | ||
!datasets/trash/.gitkeep | ||
!index.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
.htaccess | ||
config.inc.php | ||
robots.txt | ||
sitemap.xml | ||
|
||
|
||
datasets/config.inc.php | ||
datasets/documents/* | ||
datasets/trash/* | ||
|
||
!datasets/documents/.gitkeep | ||
!datasets/trash/.gitkeep | ||
|
||
|
||
|
||
|
||
!index.php | ||
!index.php |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
/** | ||
* Configuration | ||
* | ||
* @package WikiDocs | ||
* @repository https://github.com/Zavy86/WikiDocs | ||
*/ | ||
|
||
// Enable debug | ||
define('DEBUGGABLE',false); | ||
// Virtualhost path or subdirectory with trailing slashes | ||
define('PATH',"/"); | ||
// Application title | ||
define('TITLE',"Wiki|Docs"); | ||
// Application subtitle | ||
define('SUBTITLE',"flat-file markdown wiki engine"); | ||
// Contents owner | ||
define('OWNER',"Owner"); | ||
// Contents credits notice | ||
define('NOTICE',"Credits"); | ||
// Privacy banner for GDPR-compliant | ||
define('PRIVACY',null); | ||
// MD5 encoded password for editing (default',password) | ||
define('EDITCODE',"5f4dcc3b5aa765d61d8327deb882cf99"); | ||
// MD5 encoded password for reading (set null for public wiki) | ||
define('VIEWCODE',null); | ||
// Main theme color | ||
define('COLOR',"#4CAF50"); | ||
// Dark mode | ||
define('DARK',false); | ||
// Google Analytics Tag | ||
define('GTAG',null); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<IfModule mod_rewrite.c> | ||
RewriteEngine On | ||
RewriteBase / | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^(.*)$ index.php?doc=$1 [NC,L,QSA] | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters