doupinyan0186 2018-11-21 15:34
浏览 291
已采纳

Laravel - 无法从.env文件获取.pem公钥数据

I have an webapp built with Laravel and i need to use a public key from a .pem file to verify some data. The key is kept in the .env file and retrieved via config/app.php with the env() helper. Since the .pem key needs to be on separate lines with specific length i use characters to keep the key on one line. Problem is that when i use the characters the variable is not cached and i cannot access it. When i remove the characters i can retrieve the variable but the openssl_get_privatekey($key); returns false. What am i doing wrong? Is this a Laravel or some general PHP issue?

  • 写回答

1条回答 默认 最新

  • dtg25862 2018-11-21 17:17
    关注

    PHP's dotenv package does not seem to support multi-line environment variables.

    You should ideally keep your .pem file as a file and reference it by path like e.g.:

    PEM_FILE=/path/to/file.pem
    

    and in the config:

    return [
        //...
        "key" => file_get_contents(env('PEM_FILE'))
    

    This makes sense since generally certificates should generally go in the dedicated certificates path on the server. If you cache the config then the actual contents of the .pem file are only read once on deployment.

    However if you must put it in dotenv then you can do:

    In .env

    PEM_KEY="-----BEGIN RSA PRIVATE KEY-----
    …
    -----END DSA PRIVATE KEY-----"
    

    In configs:

    return [
        //...
        "key" => str_replace("\
    ", "
    ", env('PEM_KEY')), 
    

    Since the key is generally base64 I don't think there's a chance would naturally occur inside a .pem file.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于大棚监测的pcb板设计
  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计