zoukankan      html  css  js  c++  java
  • 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;
    }
    }

  • 相关阅读:
    字符串系列复习
    点分治总结
    LCT总结
    网络流总结
    centOS7下安装GUI图形界面
    周记 2014.10.8
    周记 2014.9.28
    周记 2014.9.20
    tar命令
    [转]bit与byte
  • 原文地址:https://www.cnblogs.com/shenwenkai/p/9377411.html
Copyright © 2011-2022 走看看