nginx上SSL证书以及日志的配置内容
前提
ssl证书默认端口443,在自己的云服务器的安全组中开放443端口
配置后我的日志文件/usr/etc/nginx/logs
下也有
nginx修改完后先nginx -t
查看配置是否成功,会有提示,如果成功nginx -s reload
我是用wordpress搭的网站
我的网站目前因为服务器配置较低,并发较低,不便贴出我的网站地址
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#上传单个文件最大3M
types_hash_max_size 3072;
sendfile on;
keepalive_timeout 65;
#生成日志的部分,目前访问量较小,就不按照日期生成,以下为默认格式,我没修改
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
#日志存储位置
access_log logs/access.log main;
gzip on;
#在线数据库
include conf.d/phpMyAdmin.conf;
server {
listen 443 ssl http2;
server_name abc.com;
#阿里云上购买之后把这两文件移动到Nginx安装目录,其文件名可改可不改
ssl_certificate cert/abc.pem; #将domain name.pem替换成您证书的文件名称。
ssl_certificate_key cert/abc.key; #将domain name.key替换成您证书的密钥文件名称。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用该协议进行配置。
ssl_prefer_server_ciphers on;
root /www/wordpress;
location / {
index index.html index.php index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi.conf;
}
}
#http转HTTPS部分
server{
listen 80;
server_name abc.com;
rewrite ^(.*)$ https://$host$1 permanent;
}
}
SSL证书过期后发现不能登录了怎么解决
初建网站时用的免费的ssl证书,然后一年后没有续费发现网站的后台登不上去了,那么可以使用Navicat连上自己数据库上修改连接地址