
Ich verwende die folgende Konfiguration für meinen HTTP-Block in nginx.conf:
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;
Dies funktioniert für alle Websites, die auf diesem Nginx-Server gehostet werden. Ich würde gerne wissen, ob es möglich ist, die Cache-Dateien jeder Website in einem bestimmten Ordner zu speichern, etwa so:
- /tmpfs/fastcgi_cache/website1
- /tmpfs/fastcgi_cache/website2
Wenn ich mehrere fastcgi_cache_paths deklariere, erhalte ich beim Nginx-Start einen Fehler, sogar bei unterschiedlichen Zonen.
Beste grüße.
Antwort1
Sie können im Nginx- http
Kontext mehrere Cache-Pfade definieren:
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;
}
}
Mein 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
Antwort2
Für alle, die folgtenhttps://www.digitalocean.com/community/tutorials/how-to-setup-fastcgi-caching-with-nginx-on-your-vpsund hat Probleme beim Einrichten des Caching für mehrere Sites und erhält den Fehler nginx: [emerg] "fastcgi_cache_key" directive is duplicate
.
Meine Lösung bestand darin, es in /etc/nginx/nginx.conf zu platzieren fastcgi_cache_key "$scheme$request_method$host$request_uri";
. Anstatt es in die Konfiguration /etc/nginx/sites-enabled/vhost zu setzen, auf die das obige Tutorial anspielt.
Ich hoffe, dies hilft allen anderen, die ein ähnliches Problem wie ich haben.