摘要:
aws ec2 describe-images --owners aws-marketplace --filters Name=product-code,Values=aw0evgkw8e5c1q413zgy5pjce --output json 选择最新创建时间的镜像 参考:https://wik 阅读全文
摘要:
去除重复行 sort file |uniq 查找非重复行 sort file |uniq -u 查找重复行 sort file |uniq -d 统计 sort file | uniq -c 去除重复行 sort file |uniq 查找非重复行 sort file |uniq -u 查找重复行 阅读全文
摘要:
[global] error_log = log/php-fpm.log log_level = warning emergency_restart_threshold = 10 emergency_restart_interval = 1m process_control_timeout = 10s daemonize = yes [www] listen = 0.0.0.0:9000 li... 阅读全文
摘要:
user www www; worker_processes auto; worker_cpu_affinity auto; error_log /usr/local/nginx/logs/error.log warn; pid nginx.pid; worker_rlimit_nofile 65535; events { use epoll; multi_accept on; w... 阅读全文
摘要:
环境:Centos 7.x 独立php-fpm.conf配置文件 php.yml文件如下: 阅读全文
摘要:
环境:Centos 7.x 独立nginx.conf配置文件 nginx.yml配置文件: 阅读全文
摘要:
文章:http://www.ywjt.org/index.php/archives/1994 阅读全文
摘要:
在用户通过CDN下载资源过程中,各个阶段都有可能发生劫持,要做好防劫持,必须各个阶段都有所准备,而不仅仅是用户到CDN节点这一段。 对于DNS劫持,比较有效的方式是随机域名和HTTPDNS。 而对于HTTP劫持的话,则可以采用URL加密以及HTTPS来处理。 在线上环境中必须考虑业务的实际需求,综合 阅读全文
摘要:
1.可以使用zabbix拓扑图实现 参考官方文档:https://www.zabbix.com/documentation/3.4/zh/manual/config/visualisation/maps/links 2.使用cacti插件Weathermap实现 参考博客:https://www.c 阅读全文
摘要:
1.应用程序安全&关闭自动部署 2.maxThreads 连接数限制修改配置 参数解释: maxThreads:最大并发数,默认设置 200,一般建议在 500 ~ 800,根据硬件设施和业务来判断minSpareThreads:Tomcat 初始化时创建的线程数,默认设置 25maxIdleTim 阅读全文