feature/embedded-server-config #1
1 changed files with 6 additions and 3 deletions
|
@ -22,10 +22,13 @@ cipher AES-256-CBC
|
|||
comp-lzo
|
||||
|
||||
<ca>
|
||||
{{ ca }}</ca>
|
||||
{{ ca|trim }}
|
||||
</ca>
|
||||
|
||||
<cert>
|
||||
{{ cert }}</cert>
|
||||
{{ cert|trim }}
|
||||
</cert>
|
||||
|
||||
|
||||
<key>
|
||||
{{ key }}</key>
|
||||
{{ key|trim }}
|
||||
</key>
|
Loading…
Reference in a new issue
please to end on next line
Keys have a return after them. This way it looks exactly as the end user expects when the template is filled. This is to my mind the superior option.
I would rather have you use the following in that case
Good point, it's fixed