Changes for Fedora ruby 3.4 and rails 8

This commit is contained in:
2025-02-10 10:39:21 -05:00
parent c880153898
commit 58178cc66d
47 changed files with 385 additions and 297 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ port ENV.fetch("PORT") { 3001 }
environment ENV.fetch("RAILS_ENV") { "development" }
if ENV['RAILS_ENV'] == 'development'
localhost_key = "#{File.join('config', 'certs-local', 'localhost-key.pem')}"
localhost_crt = "#{File.join('config', 'certs-local', 'localhost.pem')}"
localhost_key = "#{File.join('config', 'certs-local', 'localhost.key')}"
localhost_crt = "#{File.join('config', 'certs-local', 'localhost.crt')}"
# To be able to use rake etc
ssl_bind '0.0.0.0', 3002, {
key: localhost_key,