douglas.mendes
(usa Ubuntu)
Enviado em 06/08/2015 - 17:01h
Olá amigos!
Estou tendo alguns problemas para instalar minha certificado SSL em meu servidor, eu estou utilizando o Docker para criar os containers e o vagrant para gerenciar as vm's dentro da minha aplicação, quando faço o comando "vagrant status"
ubuntu@ip-172-31-27-88:~/CloudVicProjects/gedvic-dev-env$ vagrant status
Current machine states:
database running (docker)
gedvic running (docker)
proxy running (docker) é um proxy reverso
This environment represents multiple VMs. The VMs are all listed
above with their current state. For more information about a specific
VM, run `vagrant status NAME`.
Quando acesso o proxy e o caminho para alterar as diretivas SSLEngine: /etc/apache2/sites-enabled/defaul.conf
<Virtualhost>
## SSL directives
SSLEngine on
SSLCertificateFile "/etc/apache2/ssl/www.patobragado.gedvic.com.br.key"
SSLCertificateKeyFile "/etc/apache2/ssl/mykey.key"
SSLCACertificateFile "/etc/apache2ssl/sslroot.crt"
SSLCertificateChainFile "/etc/apach2/ssl/Intermediate.crt"
<Virtualhost>
uma vez inserido também os certificados nos caminhos especificados, a instrução é restartar o Apache
quando isso é feito o container do apache simplesmente muda seu estado para stoped.
Então minha única saída é: docker log proxy e os seguintes logs são apresentados:
***[error] Init: Unable to read server certificate from file /etc/apache2/ssl/www.patobragado.gedvic.com.br.key
[Thu Aug 06 11:01:02 2015] [error] SSL Library Error: 218529960 error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
[Thu Aug 06 11:01:02 2015] [error] SSL Library Error: 218595386 error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error***
Realmente não sei o que possa ser, alguém pode me dar uma ajuda.