usar certificados de haini.sh para dev

en vez de sutty.local, ver https://0xacab.org/sutty/haini.sh/-/merge_requests/18
This commit is contained in:
void 2021-06-18 22:47:42 +00:00
parent 972ebca033
commit a4716a0ad1
2 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ if ENV['RAILS_ENV'] == 'production'
bind 'tcp://[::]:3100' bind 'tcp://[::]:3100'
else else
sutty = ENV.fetch('SUTTY', 'sutty.local') sutty = ENV.fetch('SUTTY', 'sutty.local')
bind "ssl://[::]:3000?key=../sutty.local/domain/#{sutty}.key&cert=../sutty.local/domain/#{sutty}.crt" bind "ssl://[::]:3000?key=/etc/ssl/private/#{sutty}.key&cert=/etc/ssl/certs/#{sutty}.crt"
end end
# Specifies the `environment` that Puma will run in. # Specifies the `environment` that Puma will run in.

View file

@ -56,8 +56,8 @@ development:
# Reference: https://webpack.js.org/configuration/dev-server/ # Reference: https://webpack.js.org/configuration/dev-server/
dev_server: dev_server:
https: https:
key: '../sutty.local/domain/sutty.local.key' key: '/etc/ssl/private/sutty.local.key'
cert: '../sutty.local/domain/sutty.local.crt' cert: '/etc/ssl/certs/sutty.local.crt'
# XXX: esto está hardcodeado, debería conseguirlo del ENV # XXX: esto está hardcodeado, debería conseguirlo del ENV
host: sutty.local host: sutty.local
port: 3035 port: 3035