Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 385 Bytes

tls.md

File metadata and controls

23 lines (19 loc) · 385 Bytes

Self-signed certificate

rm -f domain.key domain.crt
openssl req -x509 -nodes -newkey rsa:4096 \
-keyout domain.key \
-out domain.crt \
-days 365 \
-config self_signed.conf

Cdlfile example

"127.0.0.1" {
    root "*" "/path/to/folder"
    file_server
    tls "/path/to/your/domain.crt" "/path/to/your/domain.key"
}

Domain specific certificate

// TODO