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 / 问题 / 972473
Accepted
Rudiger
Rudiger
Asked: 2019-06-22 20:01:11 +0800 CST2019-06-22 20:01:11 +0800 CST 2019-06-22 20:01:11 +0800 CST

为两个不同的网站提供服务,一个在 root 下,另一个在 /news 下为 nginx

  • 772

我在 Apache 下设置了这个,但无法在 nginx 下工作。我有两个网站,一个涵盖所有内容,另一个位于 /news/ 下。他们运行相同的框架 - Silverstripe。

这是我的 nginx 配置文件:

server {
      include mime.types;
      default_type  application/octet-stream;
      client_max_body_size 0; # Manage this in php.ini
      listen 80;
      listen 443 ssl;
      root /var/www/html/example/webroot;
      server_name example.com www.example.com;

      ssl on;

      ssl_certificate /etc/letsencrypt/live/example/cert.pem;
      ssl_certificate_key /etc/letsencrypt/live/example/privkey.pem;

      access_log /var/log/nginx/example/access.log main;
      error_log /var/log/nginx/example/error.log;

      # Defend against SS-2015-013 -- http://www.silverstripe.org/software/download/security-releases/ss-2015-013
      if ($http_x_forwarded_host) {
        return 400;
      }

      location ^~ /news/ {
          root /var/www/html/example2/webroot;
          try_files $uri /framework/main.php?url=$uri&$query_string;

          location ~ /framework/.*(main|rpc|tiny_mce_gzip)\.php$ {
          fastcgi_buffer_size 32k;
          fastcgi_busy_buffers_size 64k;
          fastcgi_buffers 4 32k;
          fastcgi_keep_conn on;
          fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
          fastcgi_index  index.php;
          fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
          include        fastcgi_params;
        }

      }

      location / {
        try_files $uri /framework/main.php?url=$uri&$query_string;
      }

      error_page 404 /assets/error-404.html;
      error_page 500 /assets/error-500.html;

      location ^~ /assets/ {
        sendfile on;
        try_files $uri =404;
      }

      location ~ /framework/.*(main|rpc|tiny_mce_gzip)\.php$ {
        fastcgi_buffer_size 32k;
        fastcgi_busy_buffers_size 64k;
        fastcgi_buffers 4 32k;
        fastcgi_keep_conn on;
        fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
      }

      # Denials
      location ~ /\.. {
        deny all;
      }
      location ~ \.ss$ {
        satisfy any;
        allow 127.0.0.1;
        deny all;
      }
      location ~ \.ya?ml$ {
        deny all;
      }
      location ~* README.*$ {
        deny all;
      }
      location ^~ /vendor/ {
        deny all;
      }
      location ~* /silverstripe-cache/ {
        deny all;
      }
      location ~* composer\.(json|lock)$ {
        deny all;
      }
      location ~* /(cms|framework)/silverstripe_version$ {
        deny all;
      }
}

我尝试了一些与此类似的其他事情,但它总是以相同的结果结束,服务器将永久移动返回到相同的 URL。

nginx
  • 1 1 个回答
  • 96 Views

1 个回答

  • Voted
  1. Best Answer
    Rudiger
    2019-06-23T13:52:31+08:002019-06-23T13:52:31+08:00

    感谢这个演练,我想通了:

    location /news {
      alias /var/www/html/example2/webroot;
      try_files $uri  @news;
    
      location ~ /framework/.*(main|rpc|tiny_mce_gzip)\.php$ {
           fastcgi_buffer_size 32k;
           fastcgi_busy_buffers_size 64k;
           fastcgi_buffers 4 32k;
           fastcgi_keep_conn on;
           fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
           fastcgi_index  index.php;
           fastcgi_param  SCRIPT_FILENAME $request_filename;
           include        fastcgi_params;
       }
    
    }
    
    location @news {
       rewrite /news(.*)$ /news/framework/main.php?/$1 last;
    }
    
    • 0

相关问题

  • 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