mirror of
https://github.com/ntop/ntopng.git
synced 2026-07-13 09:52:01 +00:00
10 lines
490 B
Text
10 lines
490 B
Text
SSL certificates will be installed on this directory.
|
|
|
|
If you have compiled ntopng from source, please type "make cert"
|
|
to generate your certificate. Otherwise if you want to generate your own certificate do
|
|
# openssl req -new -x509 -sha1 -extensions v3_ca -nodes -days 365 -out cert.pem
|
|
# cat privkey.pem cert.pem > ntopng-cert.pem
|
|
|
|
openssl ecparam -name prime256v1 -genkey -noout -out es256.key
|
|
openssl req -new -x509 -key es256.key -out es256.crt -days 365
|
|
cat es256.* > ntopng-cert.pem
|