分类

链接

2015 年 10 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > LINUX > 正文
共享办公室出租
LNMP可负载20万IP配置
LINUX 暂无评论 阅读(1,083)

LNMP可负载20万IP配置,自己的服务器配置,当时服务器最高达到了负载20万IP,60W的PV,服务器配置及详细的配置文件 发出来给需要的朋友

 

服务器配置:4GCPU + 4G内存 +20G SSD +  7M的带宽 (图片不多,一个页面就1、2张图片)

PHP配置:

  1. [www]
  2. listen = /tmp/php-cgi.sock
  3. listen.backlog = -1
  4. listen.allowed_clients = 127.0.0.1
  5. listen.owner = www
  6. listen.group = www
  7. listen.mode = 0666
  8. user = www
  9. group = www
  10. pm = static
  11. pm.max_requests = 5000 
  12. pm.max_children = 20
  13. pm.start_servers = 10
  14. pm.min_spare_servers = 10
  15. pm.max_spare_servers = 20
  16. request_terminate_timeout = 100
  17. request_slowlog_timeout = 0
  18. slowlog = var/log/slow.log
  19.  

MYSQL配置:

  1. [mysqld]
  2. port        = 3306
  3. socket        = /tmp/mysql.sock
  4. skip-external-locking
  5. log-error=/alidata/log/mysql/error.log
  6. key_buffer_size = 32M
  7. max_allowed_packet = 2M
  8. table_open_cache = 64
  9. sort_buffer_size = 8M
  10. net_buffer_length = 8K
  11. read_buffer_size = 2M
  12. read_rnd_buffer_size = 4M
  13. myisam_sort_buffer_size = 8M
  14. query_cache_size=64M
  15. query_cache_type=1
  16. max_connections=1024

NGNIX配置:

  1. server
  2.     {
  3.         
  4.         listen 80;
  5.         #listen [::]:80;
  6.         server_name www.xxx.com xxx.com;
  7.         
  8.         if ($host = 'xxx.com' ) {
  9.             rewrite ^/(.*)$ http://www.xxx.com/$1 permanent;
  10.         }
  11.         
  12.         index index.html index.htm index.php default.html default.htm default.php;
  13.         root  /alidata/www/xxx;
  14.  
  15.         include wordpress.conf;
  16.         #error_page   404   /404.html;
  17.         location ~ [^/]\.php(/|$)
  18.             {
  19.                 # comment try_files $uri =404; to enable pathinfo
  20.                 try_files $uri =404;
  21.                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  22.                 fastcgi_index index.php;
  23.                 include fastcgi.conf;
  24.                 #include pathinfo.conf;
  25.             }
  26.  
  27.         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  28.             {
  29.                 expires      30d;
  30.                 access_log   off;
  31.             }
  32.  
  33.         location ~ .*\.(js|css)?$
  34.             {
  35.                 expires      12h;
  36.                 access_log   off;
  37.             }
  38.         access_log   off;
  39.         access_log /alidata/server/nginx-1.4.7/logs/access.log;

 

 

 

附件打包下载:20WIPLNMP配置

 

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:LNMP可负载20万IP配置 | Bruce's Blog

发表评论

留言无头像?