エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Railsの開発環境でhttpsを使う - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Railsの開発環境でhttpsを使う - Qiita
if Rails.env.development? key_file = Rails.root.join("config", "certs", "localhost.key") cert_fil... if Rails.env.development? key_file = Rails.root.join("config", "certs", "localhost.key") cert_file = Rails.root.join("config", "certs", "localhost.cert") unless key_file.exist? root_key = OpenSSL::PKey::RSA.new(2048) key_file.write(root_key) root_cert = OpenSSL::X509::Certificate.new.tap do |root_ca| root_ca.version = 2 # cf. RFC 5280 - to make it a "v3" certificate root_ca.serial = 0x0 root_ca.su