diff options
author | monaco <arianitkukaj@gmail.com> | 2021-10-19 11:09:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 11:09:35 +0000 |
commit | 6aeb85f441d78a1df84032f3fc67ee71f640341a (patch) | |
tree | 1ef9ff25f4b94e721d8dc06e1ad84d4e423ebbd0 | |
parent | Update index.php (diff) | |
download | KISSmo-6aeb85f441d78a1df84032f3fc67ee71f640341a.tar.gz KISSmo-6aeb85f441d78a1df84032f3fc67ee71f640341a.zip |
Update README.mdKISSmo
-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) |