如何让Nginx Proxycaching与dynamic内容一起工作【JAVA教程】

!
也想出现在这里? 联系我们
信息

如何让Nginx Proxycaching与dynamic内容一起工作,第1张

概述如何让Nginx Proxycaching与dynamic内容一起工作

所以这让我头疼,也许有人已经掌握了它。我有一个Joomla 2.5网站,分配dynamic内容,但也是静态的。

这是我目前的configuration。 但我不能理解当网站输出一个会话cookie我不希望它caching它。 所以基本上(如果未注册/未login,DelIEvercaching的内容。)

proxy_cache_path C:/Users/root/Desktop/Nginx/cache levels=1:2 keys_zone=my-cache:8m max_size=1000m inactive=600m; proxy_temp_path C:/Users/root/Desktop/Nginx/temp/proxy_temp; server { Listen 80; Listen [::]:80; server_name domain.com root c:/server/websites/ps/public_www; index index.PHP index.HTML index.htm default.HTML default.htm; location / { root c:/server/websites/ps/public_www; if ($cookie_session) { set $do_not_cache 1; } if ($request_method = \’POST\’) { set $do_not_cache 1; } if ($request_uri ~* \”administrator\”) { set $do_not_cache 1; } proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_pass http://127.0.0.1:8000; # define which cache to use proxy_cache my-cache; # define which responses to cache and for how long proxy_cache_valID 200 302 60m; proxy_cache_valID 404 5m; # Don\’t cache if our headers (or cookie) are present proxy_no_cache $do_not_cache; # Ignore the standard no-cache headers – these will still be sent to the browser proxy_ignore_headers X-Accel-Expires Expires Cache-Control; # Don\’t send our custom header to the browser proxy_hIDe_header X-Dont-Cache-Me; # This next line is important if we\’re planning on caching for more than one site on the server proxy_cache_key \”$scheme$host$request_uri\”; proxy_cache_use_stale updating;

如果任何人都可以提供帮助,那么它会非常烦人,它会cachingcookies(包括我login的时候),并且会把它交给其他人。

parsing代理url时出错。 坏的端口号

Nginx传出代理configuration

Nginx反向代理websockets并启用SSL(wss://)?

在windows 7中通过命令提示符访问代理服务器后面的FTP服务器

无法将Nginxconfiguration为具有上下文path的tomcat代理

通过命令行在SOCKS5代理上打开putty ssh连接

与Ubuntu的AndroID SDK设置代理

在linux中安装jenkins – 导入读取失败(-1)

无法在windows 7上查询代理“自动检测设置”

在windows上进行PHP cURL请求会从代理中产生“400错误请求”

总结

以上是内存溢出为你收集整理的如何让Nginx Proxycaching与dynamic内容一起工作全部内容,希望文章能够帮你解决如何让Nginx Proxycaching与dynamic内容一起工作所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

© 版权声明
THE END
喜欢就支持一下吧
点赞197 分享
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容