AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题 / 838492
Accepted
Jan Wytze
Jan Wytze
Asked: 2017-03-16 09:24:15 +0800 CST2017-03-16 09:24:15 +0800 CST 2017-03-16 09:24:15 +0800 CST

Nginx 没有获得正确的根目录

  • 772

我试图用 api 制作一个角度应用程序。除 API 路由外,每条路由都应该转到 Angular 应用程序。API 路由应该去一个 laravel 项目。但是 API route( /api) 不起作用,它只是重定向到 Angular 应用程序。当我删除 Angular 应用程序 route( /) 时,我会在/api.

这是我的配置文件:

server {
        listen 80;
        server_name example.nl *.example.nl;

        access_log /home/example/logs/access.log;
        error_log /home/example/logs/error.log;

        root /home/example/public_html;

        location /api {
                root /home/example/public_api/public;
                index index.php;

                try_files $uri $uri/ /index.php?$query_string;

                location ~ \.php$ {
                        include snippets/fastcgi-php.conf;
                        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                }
        }

        location / {
                index index.html;
                try_files $uri$args $uri$args/ /index.html;
        }
}

当我删除最后一个块时,我得到了一个错误: open() "/usr/share/nginx/html/index.php" failed (2: No such file or directory)

但我是说root /home/example/public_api/public;。为什么它在采摘/usr/share/nginx/html?

/usr/share/nginx/html是我的default路线。

更新

Nginx 现在正在读取正确的目录,但是 PHP 坏了,这是我更新的配置文件:

server {
        listen 80;
        server_name example.nl *.example.nl;

        access_log /home/example/logs/access.log;
        error_log /home/example/logs/error.log;

        root /home/example/public_html;

        location /api {
                alias /home/example/public_api/public;
                index index.php;
                try_files $uri $uri/ /index.php?$query_string;

                location ~ \.php$ {
                        include snippets/fastcgi-php.conf;
                        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                }
        }

        location / {
                index index.html;
                try_files $uri$args $uri$args/ /index.html;
        }
}

在我得到的错误日志中:

FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream

这是我在浏览器中得到的内容: File not found.

这是卷曲内容(/api): <html> <head><title>301 Moved Permanently</title></head> <body bgcolor="white"> <center><h1>301 Moved Permanently</h1></center> <hr><center>nginx/1.10.0 (Ubuntu)</center> </body> </html>

这是卷曲内容/api/index.php: File not found.

nginx php-fpm php7 url-routing
  • 1 1 个回答
  • 4748 Views

1 个回答

  • Voted
  1. Best Answer
    Jan Wytze
    2017-03-16T12:42:05+08:002017-03-16T12:42:05+08:00

    经过大量搜索,我终于找到了答案:

    server {
            listen 80;
            server_name example.nl *.example.nl;
    
            access_log /home/example/logs/access.log;
            error_log /home/example/logs/error.log;
    
            root /home/example/public_html;
    
            location ^~ /api {
                    alias /home/example/public_api/public;
                    try_files $uri $uri/ @laravel;
                    index index.php;
    
                    location ~ \.php$ {
                            fastcgi_split_path_info ^(.+\.php)(/.+)$;
                            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                            include fastcgi_params;
                            fastcgi_param SCRIPT_FILENAME /home/example/public_api/public/index.php;
                    }
            }
    
            location @laravel {
                    rewrite /api/(.*)$ /api/index.php?/$1 last;
            }
    
    
            location / {
                    index index.html;
                    try_files $uri$args $uri$args/ /index.html;
            }
    }
    
    • 1

相关问题

  • Gzip 与反向代理缓存

  • nginx 作为代理的行为

  • Nginx 学习资源 [关闭]

  • 提供 70,000 个静态文件 (jpg) 的最佳方式?

  • 在 Apache、LightTPD 和 Nginx Web 服务器上提供 PHP 5.x 应用程序的现状?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve