Go to file
Joris Vink 6181cd7c8c even better 2013-06-05 16:42:39 +02:00
docs update README for github and split it up into docs/ 2013-06-05 16:41:42 +02:00
example write main process pid to /var/run/kore.pid (changable in configuration) 2013-06-04 16:53:30 +02:00
includes add kore_buf_appendb() which allows us to append a kore_buf to another one. 2013-06-05 11:27:03 +02:00
libs add openssl libraries we link against, easier. 2013-04-28 13:55:47 +02:00
src Reload the module in the main process as well when SIGHUP is received. 2013-06-05 13:50:50 +02:00
Makefile move from multithreads to single threaded worker processes. 2013-06-04 11:55:38 +02:00
README even better 2013-06-05 16:42:39 +02:00
example.conf Introduce certfile and certkey in the configuration to specify where the certificate file and keys are located on a system. 2013-06-05 09:47:08 +02:00

README

Hi.

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, ...).

With a site loaded as a module in memory the page callbacks are directly called from the worker proceses and requests can be handled incredibly fast.

No overhead.

Features
- 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
- Linux epoll(7) and worker processes for throughput
- Modules can be reloaded on-the-fly even while serving content

Right now Kore development is a moving process, so expect bugs.
If you run into said bugs please contact me at patches@coders.se.

More information can be found on https://kore.io/