Closed
Description
The nginx config generated is missing a semicolon after ssl_dhparam
.
What's being generated:
# curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam
ssl_dhparam "/path/to/dhparam"
In nginx, this throws:
invalid number of arguments in "ssl_dhparam" directive in /etc/nginx/nginx.conf
Easily solved by adding a semicolon:
# curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam
ssl_dhparam "/path/to/dhparam";
Metadata
Metadata
Assignees
Labels
No labels