nginx提供静态文件并在同一主机上运行服务器

时间:2018-03-20 21:39:43

标签: nginx web config nginx-location nginx-reverse-proxy

几乎让我的工作方式如此 - 基本上我试图在host/static(包括目录列表)上提供静态文件,并为任何非文件请求(包括默认站点)提供给另一个后端)。下面的配置似乎是这样做的,但剩下的一个问题是我无法使用host/static到达root静态目录 - 需要一个尾部斜杠!有什么想法吗?

我的配置:

location / {
  try_files /static/$uri /static/$uri/ @myserver;
}

location /static/ {
  alias /var/www/static_files/;
  autoindex on;
  disable_symlinks off;
}

location @myserver {
  proxy_pass              http://localhost:8081;
  proxy_set_header        Host $host;
  proxy_set_header        X-Real-IP $remote_addr;
  proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_connect_timeout   150;
  proxy_send_timeout      100;
  proxy_read_timeout      100;
  proxy_buffers           4 32k;
  client_max_body_size    8m;
  client_body_buffer_size 128k;
}

1 个答案:

答案 0 :(得分:0)

正如@RichardSmith所说 - 要解决此问题,只需从locationalias语句中删除尾部斜杠。