用Nginx安装后 出现500错误
以下是配置文件
server {
listen 80;
listen 443 ssl http2;
ssl_certificate /usr/local/tengine/conf/ssl/loveloli.moe.crt;
ssl_certificate_key /usr/local/tengine/conf/ssl/loveloli.moe.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
server_name loveloli.moe www.loveloli.moe;
access_log off;
index index.html index.htm index.php;
root /data/wwwroot/loveloli.moe;
if ($host != loveloli.moe) { return 301 $scheme://loveloli.moe$request_uri; }
include /usr/local/tengine/conf/rewrite/none.conf;
#error_page 404 = /404.html;
#error_page 502 = /502.html;
location ~ [/].php(/|$) {
#fastcgi_pass remote_php_ip:9000;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ /.ht {
deny all;
}
location / { try_files $uri $uri/ /index.php?$query_string; }
location /api { try_files $uri $uri/ /api.php?$query_string; }
location /admin { try_files $uri $uri/ /admin.php?$query_string; }
location /flarum {
deny all;
return 404;
}
location ~* .html$ {
expires -1;
}
location ~* .(css|js|gif|jpe?g|png)$ {
expires 1M;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
}