1.文字推荐位200元/年,需要联系QQ924994768
2.文字推荐广告位,帮你推广你的产品
3.文字推荐广告位,可以加粗、加颜色
在腾讯云上购买域名的时候,有一年SSL证书赠送,登陆账号-控制台-SSL证书。
在docker-compose配置环境下配置https:
把SSL证书下载到本地;下载证书后,上传你的ssl证书到/root/docker-nginx-php-mysql/etc/ssl SSL目录
最后到/root/docker-nginx-php-mysql/etc/nginx 修改default.template.conf(修改文件重启后,会修改default.conf) 添加以下的server
server {
#server_name localhost;
server_name www.maple1994.com
index index.php index.html;
listen 443 ssl;
fastcgi_param HTTPS on;
ssl_certificate /etc/ssl/www.mapleye1994.com_bundle.crt;
ssl_certificate_key /etc/ssl/www.mapleye1994.com.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/html/public;
location ~ .php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
1
腾讯云服务器在Linux服务器里修改文件名的三种方法: 在Linux系统中,修改文件名是日常工作中常见的操作之一。无论是批量重命名文件还是...