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
    • 最新
    • 标签
主页 / user-338622

Jan Wytze's questions

Martin Hope
Jan Wytze
Asked: 2017-03-16 09:24:15 +0800 CST

Nginx 没有获得正确的根目录

  • 1

我试图用 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 个回答
  • 4748 Views
Martin Hope
Jan Wytze
Asked: 2016-10-10 09:36:57 +0800 CST

Nginx 将流量重定向到 iLO

  • 2

我有一个带有 iLO 的 hp proliant 服务器和一个 nginx 服务器。要从路由器外部访问 iLO,我使用端口 81 和 444,因为 80 和 443 已被 nginx 占用。

但是有没有一种方法可以通过 nginx 以某种方式将流量(某个域,例如 ilo.example.com)重定向到我的 iLO IP?

redirect nginx hp-proliant ilo
  • 2 个回答
  • 928 Views
Martin Hope
Jan Wytze
Asked: 2016-10-10 06:41:24 +0800 CST

RAID 1+0 不同的磁盘大小

  • 4

我有 2 个 146GB(ORCA 中的 146,8)sas 驱动器和 2 个 72GB(ORCA 中的 73,4)sas 驱动器。我想用这 4 个驱动器设置 raid 1+0。是否可以将 146GB 和 72GB 驱动器组合起来得到 218GB?

当我尝试设置 raid 时,我只得到 136.7GB。

hp-proliant raid10 hp-smart-array
  • 2 个回答
  • 722 Views

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