nginx php

server {
listen 443;
server_name www.awkj.com;
ssl on;
ssl_certificate cert/214683879970617.pem;
ssl_certificate_key cert/214683879970617.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;

location / {
root html;
index index.php index.html index.htm;
}
location ~ .php$ {
fastcgi_index index.php;
# ifastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}

原文地址:https://www.cnblogs.com/shenwenkai/p/9377411.html