Hi *,
I have a really strange problem with a newly created rails 7 app. I added just one single route so far, but every request leads to /public/500.html not showing any error in the logs/console.
I already tried dropping out web_console, and explicitly set config.log_level = :debug and config.action_dispatch.show_exceptions = :all within application.rb. Files from /public are being served correctly so far, but noting else.
That’s everything the log says:
web-1 | => Booting Puma
web-1 | => Rails 7.1.3.2 application starting in development
web-1 | => Run `bin/rails server --help` for more startup options
web-1 | Puma starting in single mode...
web-1 | * Puma version: 6.4.2 (jruby 9.4.6.0 - ruby 3.1.4) ("The Eagle of Durango")
web-1 | * Min threads: 1
web-1 | * Max threads: 1
web-1 | * Environment: development
web-1 | * PID: 1
web-1 | * Listening on http://0.0.0.0:3000
web-1 | Use Ctrl-C to stop
web-1 | Started GET "/" for 192.168.65.1 at 2024-04-29 14:23:54 +0000
web-1 | Started GET "/home" for 192.168.65.1 at 2024-04-29 14:23:58 +0000
web-1 | Started GET "/not-a-route" for 192.168.65.1 at 2024-04-29 14:24:01 +0000
Rails: 7.1.3.2 Ruby: ruby 3.1.4p0 (jruby 9.4.6.0)
Applikation had been created with
rails new lsv -d jdbcpostgresql --skip-action-mailer --skip-action-mailbox --skip-action-text --skip-active-job --skip-active-storage --skip-action-cable --asset-pipeline=sprockets --skip-javascript --skip-hotwire --skip-test --skip-system-test --css=sass --skip-decrypted-diffs
Any ideas?