SSL on dokku + nginx

I am trying to configure SSL in my application using dokku and nginx

according to dokku I just need to create the ssl folder inside my application (in my case / home / dokkue / my _app), and dokku will read all the certificates and download them from there.

However, I get an SSL connection error

logs from nginx to "/ var / log / nginx" are empty

Is there any step that I skipped when adding SSL?

By the way: I use digitalocean ubuntu + dokku image

+4
source share
1 answer

server.crt server.key /home/dokku//tls (, )

nginx-vhosts: https://github.com/progrium/dokku/blob/master/plugins/nginx-vhosts/post-deploy

+2

Source: https://habr.com/ru/post/1534356/


All Articles