服务器环境使用的是lnmp集成包搭建的,根据业务要求,我们需要使用https访问链接
首先nginx必须安装了ssl模块,此处就不讲解如何安装ssl模块了
然后我们把证书文件放到服务器上的
/usr/local/nginx/cert
目录里
1 | ├─ /usr/local/nginx/cert |
- 然后修改 vhost nginx 配置文件
www.xxxxxx.com.conf
原始的配置为:
小峰的博客
服务器环境使用的是lnmp集成包搭建的,根据业务要求,我们需要使用https访问链接
首先nginx必须安装了ssl模块,此处就不讲解如何安装ssl模块了
然后我们把证书文件放到服务器上的 /usr/local/nginx/cert
目录里
1 | ├─ /usr/local/nginx/cert |
www.xxxxxx.com.conf
原始的配置为:
1 | ./configure --prefix=/usr/local/php72 --enable-fpm --with-mysql --with-config-file-path=/usr/local/php72/etc |
内容整理中…
Simply exclude the following file in your antivirus software if you are using Git Bash (inside Windows Terminal) on Windows and are seeing above error message.
1 | \Program Files\Git\usr\bin\winpty-agent.exe |
1 | <!DOCTYPE html> |
如果你仅需要一个单域名的证书,可以使用阿里云的免费证书,申请链接:https://common-buy.aliyun.com/?commodityCode=cas#/buy
On Laravel 5.8, you cannot use Log::useFiles()
to create custom log files,after some digging around I found that I could add a channel to config/logging.php
like this
1 | 'customlog' => [ |