<div dir="ltr"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">День добрый! Устал платить разным "горе-оптимизаторам", поэтому прошу помощи на данном форуме...</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Имеем 8-ядерный сервер.. сайты на движке DLE... на сервере стоят:</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">apache2 + nginx + php 5 + mysql + memcache</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Проблема в следующем: при серфинге по сайтам - иногда появляются задержки.. то есть можно кликнуть по ссылке рубрики, например.. и сайт будет вечно думать... а если кликнуть еще раз - то мгновенно переходит...</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Плюс Google Pagespeed и подобные сервисы показывают "включите сжатие".. Хотя в конфиге сжатие включено...</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Ну и вообще хотелось бы убедиться, что связка nginx+apache настроена на 146%.. =)</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Конфиг таков:</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">user nginx;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">worker_processes 8;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">error_log /var/log/nginx/error.log warn;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">pid /var/run/nginx.pid;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">events {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">worker_connections 1024;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">multi_accept on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">http {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">include /etc/nginx/mime.types;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">default_type application/octet-stream;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">log_format main '$remote_addr - $remote_user [$time_local] "$request" '</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">'$status $body_bytes_sent "$http_referer" '</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">'"$http_user_agent" "$http_x_forwarded_for"';</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">## логи</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#access_log /var/log/nginx/access.log main;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">access_log off;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">log_not_found off;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium"># File Cache Settings</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">##</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#open_file_cache max=100000 inactive=60s;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#open_file_cache_valid 60s;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#open_file_cache_min_uses 1;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#open_file_cache_errors on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">sendfile on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">tcp_nodelay on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">tcp_nopush on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#reset_timedout_connection on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">keepalive_timeout 15;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#####pagespeed######</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed RewriteLevel PassThrough;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium"># needs to exist and be writable by nginx</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed FileCachePath /var/cache/ngx_pagespeed_cache;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed EnableFilters add_head,combine_css,combine_heads,move_css_to_head,outline_css,outline_javascript,remove_quotes,remove_comments;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed RunExperiment on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed ExperimentSpec "id=3;percent=50;default";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed ExperimentSpec "id=4;percent=50";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed MemcachedServers "<a href="http://127.0.0.1:11211">127.0.0.1:11211</a>";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">#pagespeed MemcachedThreads 64;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">####### Gzip Settings</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">##</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_disable "msie6";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_static on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_vary on;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_min_length 1024;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_proxied any;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_comp_level 6;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_buffers 16 32k;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_http_version 1.1;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">include /etc/nginx/conf.d/*.conf;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">client_max_body_size 64m;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">log_format isp '$bytes_sent $request_length';</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">server {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">listen <a href="http://1.2.3.4:80">1.2.3.4:80</a>;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">server_name <a href="http://site.net">site.net</a> <a href="http://www.site.net">www.site.net</a> *.<a href="http://site.net">site.net</a>;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">rewrite ^(/manager/.*)$ https://$host$1 permanent;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">error_page 404 = @fallback;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">location ~* ^/(webstat/|awstats|webmail/|myadmin/|manimg/) {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_pass <a href="http://1.2.3.4:8080">http://1.2.3.4:8080</a>;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_redirect <a href="http://site.net:8080/">http://site.net:8080/</a> /;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header Host $host;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Real-IP $remote_addr;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">location / {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">set $memcached_key "$uri?$args";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">memcached_pass localhost:11211;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">error_page 404 502 504 = @fallback;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_pass <a href="http://1.2.3.4:8080">http://1.2.3.4:8080</a>;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_redirect <a href="http://site.net:8080/">http://site.net:8080/</a> /;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header Host $host;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Real-IP $remote_addr;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar)$ {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">expires 30d;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">add_header Pragma public;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">add_header Cache-Control "public";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">access_log /var/www/httpd-logs/site.net.access.log ;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">access_log /var/www/nginx-logs/site isp;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">set $proot "/var/www/site/data/www/<a href="http://site.net">site.net</a>";</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">if ( $host = "<a href="http://site.net">site.net</a>" ) {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">break;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">if ( $host = "<a href="http://www.site.net">www.site.net</a>" ) {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">break;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">if ( $host ~* ^((.*).<a href="http://site.net">site.net</a>)$ ) {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">set $proot /var/www/site/data/www/$1;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">break;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">root $proot;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">location @fallback {</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_pass <a href="http://1.2.3.4:8080">http://1.2.3.4:8080</a>;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header Host $host;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">proxy_set_header X-Real-IP $remote_addr;</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">}</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Также ряд важных вопросов:</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">- как убедиться, что nginx и memcache работают? у memcache занято всего 12Mb памяти.... маловато...</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">- как проверить "включено ли сжатие" и как его включить?</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">- mod_pagespeed ( <a href="https://github.com/pagespeed/ngx_pagespeed">https://github.com/pagespeed/ngx_pagespeed</a>) кто-нибудь включал? я включаю - пишет, что вроде все ОК... но думаю, что не работает</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">- ну и если можно, то помогите в целом оптимизировать конфиг...</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">сам конфиг в целом:</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">nginx version: nginx/1.2.7</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">built by gcc 4.4.5 (Debian 4.4.5-8)</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">TLS SNI support enabled</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">configure arguments: --add-module=/root/ngx_pagespeed --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6</span><br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium">

<br style="clear:both;color:rgb(0,0,0);font-family:Arial;font-size:medium"><span style="color:rgb(0,0,0);font-family:Arial;font-size:medium">Заранее спасибо.. устал читать мануалы и тыкать "туда-сюда"...</span><br>

<br><br></div>