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

headers.conf (200B)



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