mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #54 from YunoHost/concatenate-ca-cert-with-domain-cert
[fix] concatenate CA certificate with domain certificate
This commit is contained in:
commit
810a43d3df
1 changed files with 2 additions and 1 deletions
|
@ -131,7 +131,8 @@ def domain_add(auth, domain, dyndns=False):
|
|||
'chmod 640 %s/crt.pem' % ssl_domain_path,
|
||||
'chmod 600 %s/openssl.cnf' % ssl_domain_path,
|
||||
'chown root:metronome %s/key.pem' % ssl_domain_path,
|
||||
'chown root:metronome %s/crt.pem' % ssl_domain_path
|
||||
'chown root:metronome %s/crt.pem' % ssl_domain_path,
|
||||
'cat %s/ca.pem >> %s/crt.pem' % (ssl_domain_path, ssl_domain_path)
|
||||
]
|
||||
|
||||
for command in command_list:
|
||||
|
|
Loading…
Add table
Reference in a new issue