ini 配置您的NGINX以捕获所有路由以加快本地开发#nginx #server

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini 配置您的NGINX以捕获所有路由以加快本地开发#nginx #server相关的知识,希望对你有一定的参考价值。

server {
    listen       80;
    server_name  ~^(?<domain>.+).test$;

    root /Users/ USER_NAME_PATH /$domain/public;
    index index.html index.htm index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        try_files      $uri = 404;
        fastcgi_pass   127.0.0.1:9072;
        fastcgi_index  index.php;
        include        fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

    location ~ /\.ht {
        deny all;
    }
}

以上是关于ini 配置您的NGINX以捕获所有路由以加快本地开发#nginx #server的主要内容,如果未能解决你的问题,请参考以下文章

如何配置客户端以在 Fiddler 中捕获本地 WCF 请求?

ASP.Net MVC 路由捕获所有 *.aspx 请求

ini Nginx配置基于文件夹的静态文档读取,使用由本地dns代理(dnsmasq)解析的私有域。

ini 捕获nginx的位置

Vue路由器 - 捕获所有通配符不起作用

IPV6怎么设置?(本地路由)