From 52c051e905383538fb3a1ceafdcb9f37ea9b2452 Mon Sep 17 00:00:00 2001 From: "Michael B. Klein" Date: Thu, 23 Feb 2023 17:21:08 +0000 Subject: [PATCH] [development] Point at correct SSL cert --- config/puma.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/puma.rb b/config/puma.rb index 8db23e7813..2f32227c90 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -1,4 +1,4 @@ bind 'tcp://0.0.0.0:3000' ssl_bind '0.0.0.0', '3001', - cert: File.join(ENV['HOME'], '.dev_cert', 'dev.rdc.cert.pem'), - key: File.join(ENV['HOME'], '.dev_cert', 'dev.rdc.key.pem') \ No newline at end of file + cert: ENV['SSL_CERT'], + key: ENV['SSL_KEY'] \ No newline at end of file