Skip to content

Commit 7cc0578

Browse files
authored
Merge pull request #325 from gstrauss/nginx-missing-semicolon
nginx: fix missing semicolon
2 parents 8ecabde + 31d0842 commit 7cc0578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/helpers/nginx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default (form, output) => {
7373
conf +=
7474
'\n'+
7575
' # '+output.dhCommand+' > /path/to/dhparam\n'+
76-
' ssl_dhparam "/path/to/dhparam"\n';
76+
' ssl_dhparam "/path/to/dhparam";\n';
7777
}
7878

7979
if (form.ocsp) {

0 commit comments

Comments
 (0)