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

cpp.conf (188B)



      1 # Placeholder configuration
      2 
      3 server tls {
      4 	bind 127.0.0.1 8888
      5 }
      6 
      7 load		./cpp.so
      8 
      9 domain * {
     10 	attach		tls
     11 
     12 	certfile	cert/server.pem
     13 	certkey		cert/key.pem
     14 
     15 	route / {
     16 		handler page
     17 	}
     18 }