kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

kore.conf (241B)



      1 # sql configuration
      2 
      3 server tls {
      4 	bind 127.0.0.1 8888
      5 }
      6 
      7 tls_dhparam	dh2048.pem
      8 
      9 domain * {
     10 	attach		tls
     11 
     12 	certfile		cert/server.pem
     13 	certkey			cert/key.pem
     14 
     15 	route	/		koreapp.query
     16 	route	/hello		koreapp.hello
     17 	route	/slow		koreapp.slow
     18 }