server {
listen 80;
listen 443 ssl;
server_name dingding.com;
ssl on;
access_log /data/wwwlogs/dingding.com_nginx.log combined;
index index.html index.htm index.php;
root /data/wwwroot/dingding.com;
include /usr/local/nginx/conf/rewrite/thinkphp.conf;
#error_page 404 /404.html;
#error_page 502 /502.html;
ssl_certificate /usr/local/nginx/cert/142740600836.pem;
ssl_certificate_key /usr/local/nginx/cert/142740600836.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 ~ \.php {
#fastcgi_pass remote_php_ip:9000;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi_params;
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
set $real_script_name $1;
#set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
#fastcgi_param PATH_INFO $path_info;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
}
https nginx 配置
最新推荐文章于 2024-11-22 17:27:43 发布