ThinkAdmin 服务器 Nginx 配置

2022/2/28 7:21:25

本文主要是介绍ThinkAdmin 服务器 Nginx 配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

下面的配置是 ThinkAdmin 框架的 Nginx 配置,thinkphp 项目可以通用。

server {
    listen       80;
    server_name  xxx.com;
    root   /data/php/xxx/public;
    index  index.php index.html index.htm;

    location / {
        try_files $uri $uri/ @rules;
        #if (!-e $request_filename) {
        #    rewrite  ^(.*)$  /index.php?s=/$1  last;
        #}
    }

    location @rules {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
    }

    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }
    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ {
        #access_log off;
        expires 30d;
    }
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    location ~ /\.ht {
        deny  all;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_pass   unix:/run/php/php7.4-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        #fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    access_log  /var/log/nginx/xxx.com.access.log  logstash;
    error_log  /var/log/nginx/xxx.com.error.log  warn;
}

 



这篇关于ThinkAdmin 服务器 Nginx 配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程