tomcat
文章平均质量分 51
嘉瓦
Java 软件工程师
展开
-
Nginx 配置多域名无法访问的坑,调试了好久,才发现是小问题没处理好
http { # sendfile使用高效文件传输,提升传输性能。启用后才能使用tcp_nopush,是指当数据表累积一定大小后才发送,提高了效率。 sendfile on; # tcp_nopush 与 tcp_nodelay 互斥 tcp_nopush on; # keepalive_timeout设置客户端与服务端请求的超时时间,保证客户端多次请求的时候不会重复建立新的连接,节约资源损耗。 keepalive_timeout 65; # gz.原创 2022-02-20 08:18:21 · 4013 阅读 · 0 评论 -
tomcat-server.xml配置(https),备忘录
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyr原创 2017-11-23 22:25:53 · 831 阅读 · 1 评论