server
{
listen 80;
server_name 123;
return 301 https://$server_name$request_uri;
}
server {
# listen 80;
server_name 123;
index index.html index.htm index.php;
#rewrite ^(.*)$ https://$host$1 permanent;
#try_files $uri $uri/ /index.php?$args;
#try_files $uri $uri/ /index.php?s=$uri&$args;
root /home/123;
#error_page 404 /404.html;
include rewrite/thinkphp.conf;
# Deny access to PHP files in specific directory
#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }
# include fastcgi.conf;
# location / {
# if (!-e $request_filename) {
# rewrite ^(.*)$ /index.php?s=/$1 last;
# break;
# }
#}
include enable-php.conf;
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /.well-known {
allow all;
}
location ~ /\.
{
deny all;
}
ssl on;
listen 443;
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 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
set $real_sc
if ($fastcgi_sc
set $real_sc
set $path_info $2;
}
fastcgi_param sc
fastcgi_param sc
fastcgi_param PATH_INFO $path_info;
}
}
最佳答案
