各 Web サイト / 仮想ホストに fastcgi_cache_path を設定することは可能ですか?

各 Web サイト / 仮想ホストに fastcgi_cache_path を設定することは可能ですか?

私は nginx.conf の http ブロックで次の設定を使用しています:

fastcgi_cache_path /var/www/nginx_cache levels=1:2 keys_zone=NGINXCACHE:500m inactive=60m;
fastcgi_cache_key "$scheme$request_method$host$request_uri";
fastcgi_cache_use_stale error timeout invalid_header http_500;

これは、この nginx サーバーでホストされているすべての Web サイトで機能します。各 Web サイトのキャッシュ ファイルを、次のような特定のフォルダーに保存できるかどうかを知りたいです。

  • /tmpfs/fastcgi_cache/ウェブサイト1
  • /tmpfs/fastcgi_cache/ウェブサイト2

複数の fastcgi_cache_path を宣言すると、ゾーンが異なっていても nginx の起動でエラーが発生します。

よろしくお願いします。

答え1

nginxhttpコンテキストで複数のキャッシュ パスを定義できます。

fastcgi_cache_path /var/run/nginx/cache/site1 levels=1:2 keys_zone=SITE1:100m inactive=1w;
fastcgi_cache_path /var/run/nginx/cache/site2 levels= keys_zone=SITE2:123m inactive=60m;
# other fastcgi_cache_* settings here or in your servers/locations

server {
    server_name site1.com;
    # blablabla

    location ~ \.bla$ {
        # blablabla
        fastcgi_cache SITE1;
    }
}

server {
    server_name site2.com;
    # blablabla

    location ~ \.bla$ {
        # blablabla
        fastcgi_cache SITE2;
    }
}

私のnginx:

nginx -V
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments:
--prefix=/etc/nginx
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-client-body-temp-path=/var/lib/nginx/body
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi
--http-log-path=/var/log/nginx/access.log
--http-proxy-temp-path=/var/lib/nginx/proxy
--http-scgi-temp-path=/var/lib/nginx/scgi
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi
--lock-path=/var/lock/nginx.lock
--pid-path=/var/run/nginx.pid
--with-debug
--with-http_addition_module
--with-http_dav_module
--with-http_geoip_module
--with-http_gzip_static_module
--with-http_image_filter_module
--with-http_realip_module
--with-http_stub_status_module
--with-http_ssl_module
--with-http_sub_module
--with-http_xslt_module
--with-ipv6
--with-sha1=/usr/include/openssl
--with-md5=/usr/include/openssl
--with-mail
--with-mail_ssl_module
--add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam
--add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo
--add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair
--add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module

答え2

フォローしてくれた人全員https://www.digitalocean.com/community/tutorials/how-to-setup-fastcgi-caching-with-nginx-on-your-vps複数のサイトのキャッシュを設定する際に問題が発生し、エラーが発生しますnginx: [emerg] "fastcgi_cache_key" directive is duplicate

私の解決策は、/etc/nginx/nginx.conf 内に配置することでしたfastcgi_cache_key "$scheme$request_method$host$request_uri";。上記のチュートリアルで言及されている /etc/nginx/sites-enabled/vhost config 内に配置するのとは対照的です。

これが私と同じような問題を抱えている他の人の助けになれば幸いです。

関連情報