mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 15:51:41 +00:00
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:
parent
972ebca033
commit
a4716a0ad1
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ if ENV['RAILS_ENV'] == 'production'
|
|||
bind 'tcp://[::]:3100'
|
||||
else
|
||||
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
|
||||
|
||||
# Specifies the `environment` that Puma will run in.
|
||||
|
|
|
@ -56,8 +56,8 @@ development:
|
|||
# Reference: https://webpack.js.org/configuration/dev-server/
|
||||
dev_server:
|
||||
https:
|
||||
key: '../sutty.local/domain/sutty.local.key'
|
||||
cert: '../sutty.local/domain/sutty.local.crt'
|
||||
key: '/etc/ssl/private/sutty.local.key'
|
||||
cert: '/etc/ssl/certs/sutty.local.crt'
|
||||
# XXX: esto está hardcodeado, debería conseguirlo del ENV
|
||||
host: sutty.local
|
||||
port: 3035
|
||||
|
|
Loading…
Reference in a new issue