Skip to content

Commit

Permalink
[development] Point at correct SSL cert
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Feb 23, 2023
1 parent be013f3 commit 52c051e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/puma.rb
Original file line number Diff line number Diff line change
@@ -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')
cert: ENV['SSL_CERT'],
key: ENV['SSL_KEY']

0 comments on commit 52c051e

Please sign in to comment.