安装 openssl 模块
最后更新于:2022-04-02 02:34:42
[TOC]
## 教程
```
tar -zxvf openssl-1.0.2k.tar.gz
./config \
--prefix=/usr/local \
--openssldir=/usr/local/openssl \
enable-shared
make -j5
make install
// 在php 源码包中
cd ext/openssl
cp config0.m4 config.m4
./configure
```
';