From 6aeb85f441d78a1df84032f3fc67ee71f640341a Mon Sep 17 00:00:00 2001 From: monaco Date: Tue, 19 Oct 2021 13:09:35 +0200 Subject: Update README.md --- README.md | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 3528b59..aee7014 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,41 @@ +Visit the demo. + +[![The Demo](https://i.imgur.com/YzuOQ6T.png)](https://paste.oddprotocol.org) + # KISSmo Paste This is a simple stupid Pastebin developed for myself and people to use it as a software at my websites! +KISSmo requires no database either mysql or sqlite it simply runs on flat file base. -------------------------------------------------------------- ## Setup -Search for **$sitename=""** +| Things to do | index.php | +| ------ | ------ | +| Search for | **$sitename=""** | +| Search for | **"$ncsite=""** | + +Replace respective codes above to represent you're site. + +This configuration is needed in order to include fiche at you're build for nginx, apply this changes to you're nginx.conf for you're respective site: + +``` + location /p/ { + alias /home/admin/web/paste.oddprotocol.org/public_html/p/; + index index.txt; + autoindex on; +} +``` -Search for **"$ncsite=""** +This configuration is needed for you're OpenHTTPD if you're running OpenBSD, apply this changes on you're httpd.conf for you're respective site: -Change it so it places you're site url. +``` + location "/test/p/*" { + directory { auto index, index "index.txt" } + } +``` +KISSmo is fully compatible with Terminal Lynx or other terminal browsers! +[![The Demo](https://i.imgur.com/J5j9icZ.png)](https://paste.oddprotocol.org) Developed by monaco (C) -- cgit v1.2.3