Как я могу заставить nginx обслуживать статические файлы из двух мест, а также обслуживать сервер Unicorn Rails? - PullRequest
2 голосов
/ 31 января 2011

Хорошо, у меня есть почти стандартная конфигурация nginx для обслуживания сервера raic-единорога (слушает файл сокета, а также обслуживает статические файлы из каталога rails_app / public).

Однако я хочувыполните следующее:

  1. обслуживайте статические файлы из rails_app / public (как в настоящее время делается)
  2. обслуживайте статические файлы с помощью url / reports / из другого корня (например, / mnt / files/)

Я попытался добавить в свою конфигурацию nginx следующее:

location /reports/ {
    root /mnt/matthew/web;
}

, но это не сработало.

Любые идеи, как мне это получитьслучиться?

(ниже находится весь мой файл nginx.conf:

worker_processes 1;

pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;

events {
  worker_connections 1024; # increase if you have lots of clients
  accept_mutex off; # "on" if nginx worker_processes > 1
  # use epoll; # enable for Linux 2.6+
  # use kqueue; # enable for FreeBSD, OSX
}

http {
  # nginx will find this file in the config directory set at nginx build time
  include mime.types;

  # fallback in case we can't determine a type
  default_type application/octet-stream;

  # click tracking!
  access_log /tmp/nginx.access.log combined;
  sendfile on;

  tcp_nopush on; # off may be better for *some* Comet/long-poll stuff
  tcp_nodelay off; # on may be better for some Comet/long-poll stuff
  gzip on;
  gzip_http_version 1.0;
  gzip_proxied any;
  gzip_min_length 500;
  gzip_disable "MSIE [1-6]\.";
  gzip_types text/plain text/html text/xml text/css
             text/comma-separated-values
             text/javascript application/x-javascript
             application/atom+xml;

  # this can be any application server, not just Unicorn/Rainbows!
  upstream app_server {
    server unix:/home/matthew/server/tmp/unicorn.sock fail_timeout=0;


  }

  server {
    # enable one of the following if you're on Linux or FreeBSD
    listen 80 default deferred; # for Linux
    # listen 80 default accept_filter=httpready; # for FreeBSD


    client_max_body_size 4G;
    server_name _;

    keepalive_timeout 5;

    location /reports/ {
        root /mnt/matthew/web;
    }
    # path for static files
    root /home/matthew/server/public;



    try_files $uri/index.html $uri.txt $uri.html $uri @app;

    location @app {
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_redirect off;

      proxy_pass http://app_server;
    }

    # Rails error pages
    error_page 500 502 503 504 /500.html;
    location = /500.html {
      root public;
    }
  }
}

1 Ответ

4 голосов
/ 10 февраля 2011

location @app ищет файлы в /home/matthew/server/public, так как указан родительский корень. Если ваш оператор try files соответствует файлам в location /reports/ с другим корнем, эти файлы не найдены. Вам нужно настроить вещи так:

location /reports/ {
    root /mnt/matthew/web;
    try_files $uri/index.html $uri.txt $uri.html $uri @foo;
}
root /home/matthew/server/public;
try_files $uri/index.html $uri.txt $uri.html $uri @app;

location @foo {
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_redirect off;

  proxy_pass http://app_server;

  root /mnt/matthew/web
}

location @app {
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_redirect off;

  proxy_pass http://app_server;
}
...