关于我的nginx配置,我有几个问题,因为它涉及提供webp文件以及使用try_files
的命名位置。
当前配置:
server {
listen 80;
server_name assets.manager manager;
passenger_app_env production;
passenger_ruby /home/web-server/.rvm/gems/ruby-2.2.1@manager/wrappers/ruby;
passenger_enabled on;
error_log /home/web-server/web-applications/manager/current/log/nginx-error.log;
root /home/web-server/web-applications/manager/current/public;
satisfy any;
allow 127.0.0.1;
allow 192.168.0.0/24;
deny all;
location ~ ^/assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
add_header Last-Modified "";
add_header ETag "";
}
location ~* .+\.(?:png|jpe?g|gif)$ {
if ($webp_suffix != "") {
add_header Vary Accept;
}
try_files $uri$webp_suffix $uri =404;
}
}
目前,nginx不提供webp文件。如果我将add_header X-Webp-Uri "$uri$webp_suffix";
放在第一个location
块中,则会添加标头。如果我将其放在匹配location
块的第二个png / jpeg中,则标题不会被设置。我的理解是正则表达式位置块是顺序的(即,它不会在第一次匹配时停止匹配)。
1)我想提供webp图像(如果存在)(我的尝试是第二个location
块)。在这种情况下,嵌套location
块有帮助吗?我想为/ assets /中的所有文件设置gzip_static,expires等,但我只想提供webp版本,如果它们存在于/ assets /中的某些文件扩展名。
2)关于另一个话题,我想提供静态.html文件(如果存在)。要做到这一点(在Web上查找教程之后),我需要try_files
和指向上游应用程序(Rails)的命名位置块的组合。但是,如果我使用Passenger(使用passenger-install-nginx-module
安装),我似乎无法找到如何声明上游块。我可以为Passenger / Nginx设置找到的唯一配置是使用passenger_enabled on;
server {
listen 80;
server_name assets.staging.pos staging.pos;
passenger_app_env staging;
passenger_ruby /home/vagrant/.rvm/gems/ruby-2.2.1@pos/wrappers/ruby;
passenger_enabled on;
error_log /home/vagrant/rails/staging.pos/log/nginx-error.log;
root /home/vagrant/rails/staging.pos/public;
try_files $uri /cache/$uri /cache/$uri.html @app;
location @app {
proxy_set_header X-Forwarded-Proto http;
}
location ~* ^/images/.+\.(png|jpe?g)$ {
if ($webp_suffix != "") {
add_header Vary Accept;
}
try_files $uri$webp_suffix $uri =404;
}
}
编辑2:我发现nginx完全消除了if
块之外的任何指令!
这将导致仅设置Vary Accept
标头:
server {
location ~* ^/images/.+\.(png|jpe?g)$ {
add_header X-Whatever "Yo";
if ($webp_suffix != "") {
add_header Vary Accept;
}
}
}
这将导致两个标头都被设置:
server {
location ~* ^/images/.+\.(png|jpe?g)$ {
if ($webp_suffix != "") {
add_header Vary Accept;
add_header X-Whatever "Yo";
}
}
}
编辑3:所以现在它更令人迷惑。它与最后一个代码块(location或if语句)中的任何先前add_header
完全被忽略。即,使用以下内容,仅设置X-Whatever标头:
location ~ ^/assets/ {
gzip_static on;
expires max;
add_header Cache-Control public; # Ignored?!
add_header Last-Modified ""; # Ignored?!
add_header ETag ""; # Ignored?!
location ~* ^/assets/.+\.(?:png|gif|jpe?g)$ {
add_header X-Something "$uri$webp_suffix"; # Not ignored!
}
}
答案 0 :(得分:0)
我必须删除Vary Accept
标头条件并始终应用它。我不知道这是好还是坏,但我没有任何其他选择,因为它只是删除我申请的所有其他标题!我还必须将资产块上方的webp位置块移动并复制糟糕的代码。
工作配置:
server {
listen 80;
server_name assets.staging.pos staging.pos;
passenger_app_env staging;
passenger_ruby /home/vagrant/.rvm/gems/ruby-2.2.1@pos/wrappers/ruby;
passenger_enabled on;
error_log /home/vagrant/rails/staging.pos/log/nginx-error.log;
root /home/vagrant/rails/staging.pos/public;
# Try to return cached responses without hitting the app
try_files $uri /cache/$uri /cache/$uri.html @app;
location @app {
proxy_set_header X-Forwarded-Proto http;
}
# Return webp images when possible
location ~* ^/assets/.+\.(?:png|gif|jpe?g)$ {
expires max;
add_header Cache-Control public;
add_header Vary Accept;
add_header Last-Modified "";
add_header ETag "";
try_files $uri$webp_suffix $uri =404;
}
# Regular asset headers
location ~ ^/assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
add_header Last-Modified "";
add_header ETag "";
}
}