{"id":13660295,"url":"https://github.com/remko/wigit","last_synced_at":"2025-04-24T19:30:45.387Z","repository":{"id":416096,"uuid":"35678","full_name":"remko/wigit","owner":"remko","description":"Simple \u0026 light Git-based wiki","archived":true,"fork":false,"pushed_at":"2021-09-07T11:17:39.000Z","size":113,"stargazers_count":113,"open_issues_count":0,"forks_count":31,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-11-10T14:42:16.558Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://el-tramo.be/wigit","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/remko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2008-07-20T21:12:26.000Z","updated_at":"2023-10-21T07:42:27.000Z","dependencies_parsed_at":"2022-07-04T15:12:29.104Z","dependency_job_id":null,"html_url":"https://github.com/remko/wigit","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remko%2Fwigit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remko%2Fwigit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remko%2Fwigit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remko%2Fwigit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remko","download_url":"https://codeload.github.com/remko/wigit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250693470,"owners_count":21472268,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T05:01:19.830Z","updated_at":"2025-04-24T19:30:45.034Z","avatar_url":"https://github.com/remko.png","language":"PHP","funding_links":[],"categories":["PHP"],"sub_categories":[],"readme":"**⚠️ The implementation of this project is very naive (using processes etc.), and has not gone through any security review. I would be surprised if it still works, and if it does, I wouldn't trust it if I were you. Leaving it here for historical purpose only.**\n\n# [WiGit: A Git-based Wiki](https://el-tramo.be/wigit)\n\n## About\n\nWiGit is a simple Wiki written in PHP, using [Git](http://git.or.cz/) as \na backend for tracking changes. Besides Git, this wiki makes use of \n[Textile](http://textile.sitemonks.com) for marking up text. \n\n\n## Features\n\n- Very simple and light\n- Easily customizable using themes\n- Extensive syntax for marking up text (using Textile)\n- Full history tracking support\n- Basic support for users/authors, by using the HTTP authentication headers \n  to extract the user.\n- Support for pretty URLs (using URL rewriting)\n\n\n## Requirements\n\n- Webserver\n- PHP4\n- Git\n\n\n## Installation\n\n- Put the WiGit dir in some place where the webserver can find it\n- Make sure there's a 'data' subdir, and that it is writable by the webserver\n- Copy config.php.sample to config.php, and edit config.php to reflect your \n  local settings\n- Surf to the wigit URL, and you should start by editing the front page\n\nFor URL rewriting, change the `SCRIPT_URL` to be the base URL prefix (as \nis shown in the config file), and add the necessary URL rewrite rules for\nyour webserver. E.g.,\n\n- For Apache, add the following to .htaccess in your wigit install dir:\n\n\t\t\u003cIfModule mod_rewrite.c\u003e\n\t\t\tRewriteEngine On\n\t\t\tRewriteBase /wigit/\n\t\t\tRewriteCond %{REQUEST_FILENAME} !-f\n\t\t\tRewriteRule (.*) /wigit/index.php?r=/$1 [L] \n\t\t\u003c/IfModule\u003e\n\n- For lighttpd, add the following to your config file:\n\n\t\turl.rewrite-once = (\n\t\t\t\t\"^/wigit/themes/(.*)\" =\u003e \"$0\",\n\t\t\t\t\"^/wigit(.*)\" =\u003e \"/wigit/index.php?r=$1\",\n\t\t\t)\n\n(where `/wigit` is replaced by your own base url)\n\nFor user support, configure your webserver to require authentication for\nthe wigit install dir. E.g.\n\n- For Apache, add the following to .htaccess in your wigit install dir:\n\n\t\tAuthType Basic\n\t\tAuthName \"My WiGit\"\n\t\tAuthUserFile /path/to/passwords/file\n\t\tRequire valid-user\n\n- For lighttpd, add the following to your config file:\n\n\t\tauth.backend = \"htdigest\"\n\t\tauth.backend.htdigest.userfile = \"/path/to/htdigest/file\"\n\t\tauth.require = (\n\t\t\t\t\t\"/wigit\" =\u003e (\n\t\t\t\t\t\t\t\"method\" =\u003e \"digest\",\n\t\t\t\t\t\t\t\"realm\" =\u003e \"My WiGit\",\n\t\t\t\t\t\t\t\"require\" =\u003e \"valid-user\",\n\t\t\t\t\t\t)\n\t\t\t\t)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremko%2Fwigit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremko%2Fwigit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremko%2Fwigit/lists"}