0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Heroku】 error:0308010C デプロイ失敗

Last updated at Posted at 2024-02-07

はじめに

以下の環境でRailsアプリを作成し、Herokuにデプロイしようとしたところ、error:0308010C:digital envelope routines::unsupportedが発生。
原因はNode.jsとOpenSSLの互換性だったので、解決法を備忘録としてシェアします。

環境

Ruby 3系
Ruby on Rails 6.1系

解決手順

  1. Heroku側で NODE_OPTIONS=--openssl-legacy-provider を設定。

    • 該当アプリケーション選択
    • Settingsへ
    • Config VarsでReveal Config Varsを押す
    • NOTE_OPTIONS, --openssl-legacy-provider を追加
       
      Heroku setting
       
      スクリーンショット 2024-02-08 2.31.36.png

 
2. production.rbに環境変数を追加

config/environments/production.rb
ENV['NODE_OPTIONS'] = '--openssl-legacy-provider'

 
以上

参考

以下の記事を参考にエラーの解決ができました。感謝申し上げます:bow_tone1:

Rubyと筋肉とギターとわたし
【Heroku】 error:0308010C が発生してデプロイに失敗する場合の解決策

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?