kore/README

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-05-01 21:36:00 +02:00
Hi.
2013-07-17 20:28:40 +02:00
Kore is a fast webserver that facilitates creating dynamic websites in the
C programming language. It takes away the bottleneck of constantly loading
items from disk or executing non compiled code (PHP, Perl, ...).
2013-05-01 21:36:00 +02:00
2013-07-17 20:28:40 +02:00
Kore provides you with a set of API functions you can use to build your site
which is then loaded into the webserver as a loadable C module. Because of
this pages are mapped to functions that are directly called from the worker
processes allowing for the potential of great speed.
2013-05-17 08:46:45 +02:00
2013-07-17 20:28:40 +02:00
As little overhead as possible.
2013-05-01 21:36:00 +02:00
Features
2013-06-24 11:53:33 +02:00
- Supports SNI
2013-06-05 16:42:39 +02:00
- Supports SPDY/3
- Supports HTTP/1.1
- Secure by default
- SSL connections only
- Virtual host support
- Easy to use configuration
- Loads your site as a precompiled C module
2013-06-21 00:07:35 +02:00
- Event driven architecture and worker processes for throughput
2013-06-05 16:42:39 +02:00
- Modules can be reloaded on-the-fly even while serving content
2013-06-05 14:10:29 +02:00
2013-06-24 12:05:22 +02:00
License
- Kore is licensed under the ISC license.
2013-06-24 12:06:56 +02:00
Platforms support
2013-06-21 00:07:35 +02:00
- Linux
- OpenBSD
2013-07-11 23:01:54 +02:00
- FreeBSD
2013-07-17 20:28:40 +02:00
- OSX
2013-06-21 00:07:35 +02:00
Right now Kore development is a moving process, so expect bugs.
If you run into said bugs please contact me at joris@coders.se.
2013-06-05 14:10:29 +02:00
More information can be found on https://kore.io/