I want to make running the tests easier. To achieve this I want to provide the secrets used in the tests inside my project. I create the 'fullchain.pem', 'privkey.pem' and 'dhparams.pem' with this commands:
openssl genrsa > privkey.pem
openssl req -new -x509 -key privkey.pem > fullchain.pem
openssl dhparam -out dhparams.pem 4096
Is it safe to publish this files if I run the tests in a local network?