我刚刚设置了一个在 Unicorn 上运行的 Sinatra 应用程序,并通过 NGINX 套接字提供服务。
我正在尝试让 NGINX 在我的 nginx 配置中使用此配置来提供我的静态资产:
* 编辑 *(添加完整的服务器配置)
upstream unicorn {
server unix:/tmp/unicorn.app.sock fail_timeout=0;
}
server {
listen 80 default;
server_name localhost;
root /home/ubuntu/app;
location ^~ /public/ {
root /home/ubuntu/app;
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @unicorn;
location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
但我的独角兽日志仍然显示它正在提供文件
[03/Oct/2014 19:25:05] "GET /javascript/map.js HTTP/1.0" 304 - 0.0016
[03/Oct/2014 19:25:05] "GET /javascript/geopo.js HTTP/1.0" 304 - 0.0030
[03/Oct/2014 19:25:05] "GET /images/logo.png HTTP/1.0" 304 - 0.0022
ETC。
我错过了什么?