This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
CREATE TABLE `registrable_metadata` ( | |
`owner` bigint(20) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`value` varchar(255) DEFAULT NULL, | |
primary key (owner, name) | |
); | |
create table registrable_seq ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<!-- mvn -PmutationCoverage org.pitest:pitest-maven:mutationCoverage --> | |
<id>mutationCoverage</id> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.pitest</groupId> | |
<artifactId>pitest-maven</artifactId> | |
<version>1.4.3</version> | |
<dependencies> |