08 2022 档案
linux ubuntu PHP之Nginx 配置
摘要:upstream www.xxxxxx.com { server localhost:9041;} #配置80端口重定向443端口 server { listen 80; server_name www.xxxxxx.com;#域名 return 301 https://$server_name$r
阅读全文
linux nbuntu下安装 php
摘要:1、下载 wget http://cn2.php.net/distributions/php-7.0.30.tar.gz 解压 tar -zxvf php-7.0.30.tar.gz 2、下载安装依赖 yum -y install gcc openssl openssl-devel curl cur
阅读全文
nginx 配置 http重定向到https
摘要:话不多说直接代码 server { listen 80; server_name www.xxxxx.com; return 301 https://$server_name$request_uri;} server { listen 443 ssl; server_name www.xxxxx.c
阅读全文
浙公网安备 33010602011771号