Course Intermediate 10976
Course Introduction:"Self-study IT Network Linux Load Balancing Video Tutorial" mainly implements Linux load balancing by performing script operations on web, lvs and Linux under nagin.
Course Advanced 17039
Course Introduction:"Shangxuetang MySQL Video Tutorial" introduces you to the process from installing to using the MySQL database, and introduces the specific operations of each link in detail.
Course Advanced 10737
Course Introduction:"Brothers Band Front-end Example Display Video Tutorial" introduces examples of HTML5 and CSS3 technologies to everyone, so that everyone can become more proficient in using HTML5 and CSS3.
How to set up cache in nginx settings
2017-05-16 17:09:31 0 1 1615
Course Introduction:proxy,nginx:nginx proxy_cache configuration instructions: #Define the proxy cache path, cache file saving path, cache initial size and maximum cache time proxy_cache_path d:codecache levels=1:2 keys_z max_size=20m inactive=1m; location / {#Configure the above definition proxy_cache cache1 of keys_zone; #When configuring which parameters are included in the url, do not query proxy_cache_ in the cache
2016-07-29 comment 0 1109
Course Introduction:nginx, cache: Use nginx proxy_cache for website cache underlay configuration: As we all know, nginx proxy_cache can cache the requested response and play a CDN-like role. It even provides more functions than CDN and can also be used to cache underlay data. , when the background tomcat hangs, nginx directly returns the underlying data in the cache to the user. Directly paste the detailed configuration upstream tomcat_localhost {//Be careful not to set the timeout too long here server 127.0.0.1:8080 weight=10 max
2016-07-29 comment 0 1039