1 2 3 4 5 6 7 8 9 10
tls { enabled = true; cert_path = "E:/projects/rust/cli/tls/cert.pem"; key_path = "E:/projects/rust/cli/tls/key.pem"; }; route "/test" GET { response.body("TLS работает!"); response.send(); };