У меня есть приложение rails с поддоменами.
Я изменил расположение кэширования по умолчанию в своем приложении, чтобы шаблоны записывались в:
[app_dir] / public / cache / [поддомен] / [путь]
Итак, запрос к:
http://france.mysite.com/recipes.html
записывает:
[my_app]/public/cache/france/recipes.html
Это работает нормально, файлы записываютсяв правильное место на сервере.
Моя проблема в том, что NGinx не обслуживает эти кэшированные файлы.
Я добавил следующее в свою конфигурацию NGinx:
# catch requests to www and remove the 'www'
server {
server_name www.mysite.com;
rewrite ^ $scheme://mysite.com$request_uri permanent;
}
server {
server_name mysite.com *.mysite.com;
access_log /home/deploy/mysite/staging/current/log/access.log;
error_log /home/deploy/mysite/staging/current/log/error.log;
root /home/deploy/mysite/staging/current/public;
passenger_enabled on;
rails_env staging;
client_max_body_size 400M;
client_body_buffer_size 128k;
if (-f $request_filename) {
break;
}
# Check / files with index.html
if (-f $document_root/cache/$host/$uri/index.html) {
rewrite (.*) /cache/$host/$1/index.html break;
}
# Check the path + .html
if (-f $document_root/cache/$host/$uri.html) {
rewrite (.*) /cache/$host/$1.html break;
}
# Check directly
if (-f $document_root/cache/$host/$uri) {
rewrite (.*) /cache/$host/$1 break;
}
}
Может кто-нибудь указать, где я ошибся?: /