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

async-curl.conf (219B)



      1 # ht configuration
      2 
      3 server tls {
      4 	bind 127.0.0.1 8888
      5 }
      6 
      7 workers		1
      8 pledge		dns
      9 
     10 domain * {
     11 	attach		tls
     12 
     13 	certfile	cert/server.pem
     14 	certkey		cert/key.pem
     15 
     16 	route / {
     17 		handler http
     18 	}
     19 
     20 	route /ftp {
     21 		handler ftp
     22 	}
     23 }