diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 32 |
1 files changed, 29 insertions, 3 deletions
@@ -1,15 +1,41 @@ +Visit the demo. + +[](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! +[](https://paste.oddprotocol.org) Developed by monaco (C) |