How To Setting Proxy Cache In NGINX

preview_player
Показать описание
How To Setting Proxy Cache In NGINX

This video show you how to setting NGINX proxy cache, please note this setting only work if you use proxy and you must don't forget define proxy_cache_valid. I hope this video can help you. :)

If you have some problems or difficulties or have some other questions then you can ask me in the comment bellow. I will try answer your questions. :)

Please consider supporting me on Patreon :

How To Install Nginx 1.14 On Windows

How To Compile And Install Gunicorn On Windows :

How To Configure NGINX For Reverse Proxy :

NGINX Tutorial :

NGINX Cache Configuration :

# nginx cache
location /test_cache_proxy {
proxy_cache test_cache_key;
proxy_cache_revalidate on;
proxy_cache_min_uses 1;
proxy_cache_valid 200 10m;
proxy_cache_use_stale error timeout http_500 http_404;
proxy_cache_background_update on;
proxy_cache_lock on;

# proxy_cache_purge $purge_method; # only available in NGINX Commercial Support

}

#RYUDITHTUTORIAL
Рекомендации по теме
Комментарии
Автор

Hi, I have images in /var/images directory, I want to cache those images, I have tried everything, proxy cache doesn't seem to work for images, it only works for text based data I guess, can you a video on it if you can achieve this.

LryuzakiLN
Автор

Hi, I am new to nginx and trying to configure with MVC API. I would like to know which software you are using to update .config file? Can you suggest which software i should use for windows??

srmirza
Автор

Hi, thanks for your video, I have a question, and that is: I already applied fastcgi-cache, do I need to apply proxy cache for my wordpress website?

lqhhd
Автор

thanks for proxy cache, best explain..
could you share your best config and make it explain, next video

radityawaliulu
Автор

Hi, while entering the url localhost after starting nginx, it works fine...but localhost/images/hello.html I am getting connection timed out and 502 http status...and no cache is created...please help

shashankdixit
Автор

Hello how r u can u plz get me the conf

rabihbarudi