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

upload.conf (246B)



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