摘要:
2.1 压测是什么 压测,即压力测试,是确立系统稳定性的一种测试方法,通常在系统正常运作范围之外进行,以考察其功能极限和隐患。 主要检测服务器的承受能力,包括用户承受能力(多少用户同时玩基本不影响质量)、流量承受等。 2.2 为什么要压测 压测的目的就是通过压测(模拟真实用户的行为),测算出机器的性 阅读全文
摘要:
七层负载均衡server { listen 80; server_name localhost; location / { proxy_pass http://name; //调用集群 } } upstream name { server 127.0.0.1 80 weight=5; server 阅读全文
摘要:
没有HTTPS的抓包截图 HTTPS=HTTP + TLS/SSL https 实现过程如下 1.客户端发起HTTPS请求 rewrite www.baidu.com https://www.baidu.com 客户端访问某个web端的https地址,一般都是443端口 2.服务器端的配置 采用ht 阅读全文
摘要:
yum install nginx php php-fpm mariadb-server php-mysql php.conf server { listen 8000; # pass the PHP scripts to FastCGI server listening on 127.0.0.1: 阅读全文