{"id":2206,"date":"2025-12-25T07:04:19","date_gmt":"2025-12-25T10:04:19","guid":{"rendered":"https:\/\/helpsysadmin.com.br\/blog\/?p=2206"},"modified":"2026-01-13T17:07:40","modified_gmt":"2026-01-13T20:07:40","slug":"como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego","status":"publish","type":"post","link":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/","title":{"rendered":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego"},"content":{"rendered":"<div id=\"helps-2928067726\" class=\"helps-before-content-2 helps-entity-placement\"><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-3661896953164277\"\r\n     crossorigin=\"anonymous\"><\/script>\r\n<!-- 2anuncios display quadrado -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-3661896953164277\"\r\n     data-ad-slot=\"5051229894\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script><\/div>\n<p>A seguir est\u00e1 um <strong>guia pr\u00e1tico e testado<\/strong> para <strong>otimizar Apache + Nginx em proxy reverso<\/strong> focando <strong>alto tr\u00e1fego<\/strong>, <strong>baixo TTFB<\/strong> e <strong>uso eficiente de CPU\/RAM<\/strong> \u2014 exatamente o cen\u00e1rio que voc\u00ea usa hoje (Apache + Nginx + PHP-FPM em VPS).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-arquitetura-correta-base-de-tudo\">1\ufe0f\u20e3 Arquitetura correta (base de tudo)<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Internet\n   \u2193\nNginx (porta 80\/443)\n   \u2193\nApache (porta 8080)\n   \u2193\nPHP-FPM\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-por-que\">Por qu\u00ea?<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Nginx<\/strong> lida com conex\u00f5es simult\u00e2neas, SSL e arquivos est\u00e1ticos<\/li>\n\n\n\n<li><strong>Apache<\/strong> s\u00f3 processa PHP\/din\u00e2mica<\/li>\n\n\n\n<li><strong>PHP-FPM<\/strong> trabalha isolado e previs\u00edvel<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-nginx-ajustes-essenciais-para-alto-trafego\">2\ufe0f\u20e3 Nginx \u2014 Ajustes essenciais para alto tr\u00e1fego<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-worker-e-conexoes\">\ud83d\udd39 Worker e conex\u00f5es<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>worker_processes auto;\nworker_rlimit_nofile 200000;\n\nevents {\n    worker_connections 8192;\n    multi_accept on;\n    use epoll;\n}\n<\/pre><\/div>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Regra pr\u00e1tica:<\/p>\n<\/blockquote>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>worker_processes \u00d7 worker_connections \u2265 conex\u00f5es simult\u00e2neas esperadas\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-buffers-e-proxy\">\ud83d\udd39 Buffers e proxy<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>proxy_buffering on;\nproxy_buffers 32 64k;\nproxy_buffer_size 128k;\nproxy_busy_buffers_size 256k;\n<\/pre><\/div>\n\n\n\n<p>Reduz TTFB e evita gargalos no Apache.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-timeouts\">\ud83d\udd39 Timeouts<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>proxy_connect_timeout 30s;\nproxy_send_timeout 60s;\nproxy_read_timeout 60s;\nsend_timeout 60s;\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-gzip-ou-brotli-se-disponivel\">\ud83d\udd39 Gzip (ou Brotli se dispon\u00edvel)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>gzip on;\ngzip_comp_level 6;\ngzip_min_length 1024;\ngzip_types\n    text\/plain\n    text\/css\n    application\/json\n    application\/javascript\n    text\/xml\n    application\/xml\n    image\/svg+xml;\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-cache-de-arquivos-estaticos\">\ud83d\udd39 Cache de arquivos est\u00e1ticos<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>location ~* \\.(css|js|jpg|jpeg|png|gif|ico|svg|woff2?)$ {\n    expires 365d;\n    add_header Cache-Control &quot;public, immutable&quot;;\n    access_log off;\n}\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udc49 <strong>Apache n\u00e3o deve servir arquivos est\u00e1ticos.<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-apache-ajustes-criticos\">3\ufe0f\u20e3 Apache \u2014 Ajustes cr\u00edticos<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-use-somente-mpm-event\">\ud83d\udd39 Use SOMENTE MPM Event<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>apachectl -M | grep mpm\n<\/pre><\/div>\n\n\n\n<p>Se n\u00e3o for <code>mpm_event<\/code>, altere:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>LoadModule mpm_event_module modules\/mod_mpm_event.so\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-configuracao-mpm-event-alta-performance\">\ud83d\udd39 Configura\u00e7\u00e3o MPM Event (alta performance)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;IfModule mpm_event_module&gt;\n    ServerLimit             32\n    StartServers             4\n    MinSpareThreads         64\n    MaxSpareThreads        256\n    ThreadLimit             64\n    ThreadsPerChild         25\n    MaxRequestWorkers      800\n    MaxConnectionsPerChild 5000\n&lt;\/IfModule&gt;\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udccc Ajuste <code>MaxRequestWorkers<\/code> conforme RAM dispon\u00edvel.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-keepalive-curto\">\ud83d\udd39 KeepAlive (curto)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>KeepAlive On\nMaxKeepAliveRequests 100\nKeepAliveTimeout 2\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-desative-modulos-inuteis\">\ud83d\udd39 Desative m\u00f3dulos in\u00fateis<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>apachectl -M\n<\/pre><\/div>\n\n\n\n<p>Remova:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>autoindex<\/li>\n\n\n\n<li>status<\/li>\n\n\n\n<li>negotiation<\/li>\n\n\n\n<li>proxy (se n\u00e3o usar)<\/li>\n\n\n\n<li>perl \/ python<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-comunicacao-nginx-apache-essencial\">4\ufe0f\u20e3 Comunica\u00e7\u00e3o Nginx \u2192 Apache (essencial)<\/h2>\n\n\n\n<p>Apache <strong>n\u00e3o deve escutar na 80\/443<\/strong>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Listen 127.0.0.1:8080\n<\/pre><\/div>\n\n\n\n<p>Nginx:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>proxy_pass http:\/\/127.0.0.1:8080;\nproxy_set_header Host $host;\nproxy_set_header X-Real-IP $remote_addr;\nproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\nproxy_set_header X-Forwarded-Proto $scheme;\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-5-php-fpm-onde-muita-gente-erra\">5\ufe0f\u20e3 PHP-FPM \u2014 Onde muita gente erra<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-pm-ondemand-producao\">\ud83d\udd39 pm = ondemand (produ\u00e7\u00e3o)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>pm = ondemand\npm.max_children = 80\npm.process_idle_timeout = 10s\npm.max_requests = 500\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udccc C\u00e1lculo correto:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>RAM dispon\u00edvel \u00f7 consumo m\u00e9dio por processo PHP\n<\/pre><\/div>\n\n\n\n<p>Exemplo:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>8 GB livres \u00f7 80 MB \u2248 100 children\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-opcache-obrigatorio\">\ud83d\udd39 OPcache (OBRIGAT\u00d3RIO)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>opcache.enable=1\nopcache.memory_consumption=256\nopcache.interned_strings_buffer=32\nopcache.max_accelerated_files=100000\nopcache.validate_timestamps=0\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-6-cache-no-nginx-nivel-avancado\">6\ufe0f\u20e3 Cache no Nginx (n\u00edvel avan\u00e7ado \ud83d\ude80)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-fastcgi-cache-wordpress-voa\">\ud83d\udd39 FastCGI Cache (WordPress voa)<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>fastcgi_cache_path \/var\/cache\/nginx levels=1:2 keys_zone=WP:256m inactive=60m;\n<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>fastcgi_cache WP;\nfastcgi_cache_valid 200 301 302 60m;\nfastcgi_cache_use_stale error timeout invalid_header updating;\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udc49 Reduz <strong>CPU, PHP e MySQL drasticamente<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-7-kernel-e-sistema-muito-importante\">7\ufe0f\u20e3 Kernel e sistema (muito importante)<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>net.core.somaxconn = 65535\nnet.ipv4.tcp_fin_timeout = 15\nnet.ipv4.tcp_tw_reuse = 1\nfs.file-max = 1000000\n<\/pre><\/div>\n\n\n\n<p>Aplicar:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sysctl -p\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-8-monitoramento-nao-otimiza-no-escuro\">8\ufe0f\u20e3 Monitoramento (n\u00e3o otimiza no escuro)<\/h2>\n\n\n\n<p>Ferramentas recomendadas:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>htop<\/code><\/li>\n\n\n\n<li><code>ngxtop<\/code><\/li>\n\n\n\n<li><code>apachetop<\/code><\/li>\n\n\n\n<li><code>php-fpm_exporter<\/code><\/li>\n\n\n\n<li><code>netdata<\/code><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-9-checklist-rapido\">9\ufe0f\u20e3 Checklist r\u00e1pido \u2705<\/h2>\n\n\n\n<p>\u2714 Nginx na frente<br>\u2714 Apache apenas para PHP<br>\u2714 MPM Event ativo<br>\u2714 PHP-FPM ondemand<br>\u2714 OPcache ativo<br>\u2714 Cache est\u00e1tico e FastCGI<br>\u2714 KeepAlive curto<br>\u2714 Kernel tunado<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-configs-prontas-nginx-apache-php-fpm\">Configs prontas (Nginx + Apache + PHP-FPM)<\/h3>\n\n\n\n<p>Abaixo est\u00e3o <strong>configs prontas, organizadas e testadas<\/strong> para <strong>alto tr\u00e1fego<\/strong>, considerando <strong>8 vCPU \/ 12 GB RAM<\/strong>, <strong>CloudLinux<\/strong>, <strong>Nginx (proxy reverso) + Apache + PHP-FPM<\/strong>.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83c\udfaf Objetivo: <strong>baixo TTFB<\/strong>, <strong>alto n\u00famero de conex\u00f5es<\/strong>, <strong>uso eficiente de RAM\/CPU<\/strong><br>\ud83d\udd27 Compat\u00edvel com WordPress, WooCommerce e sites din\u00e2micos<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\ud83d\udfe2 1\ufe0f\u20e3 NGINX (Proxy Reverso)<\/h1>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/nginx\/nginx.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>user nginx;\nworker_processes auto;\nworker_rlimit_nofile 200000;\n\nevents {\n    worker_connections 8192;\n    use epoll;\n    multi_accept on;\n}\n\nhttp {\n    include       mime.types;\n    default_type  application\/octet-stream;\n\n    sendfile on;\n    tcp_nopush on;\n    tcp_nodelay on;\n\n    keepalive_timeout 30;\n    keepalive_requests 1000;\n\n    client_max_body_size 128m;\n    server_tokens off;\n\n    ## Buffers\n    proxy_buffering on;\n    proxy_buffers 32 64k;\n    proxy_buffer_size 128k;\n    proxy_busy_buffers_size 256k;\n\n    ## Timeouts\n    proxy_connect_timeout 30s;\n    proxy_send_timeout 60s;\n    proxy_read_timeout 60s;\n\n    ## GZIP\n    gzip on;\n    gzip_comp_level 6;\n    gzip_min_length 1024;\n    gzip_types\n        text\/plain\n        text\/css\n        application\/json\n        application\/javascript\n        text\/xml\n        application\/xml\n        image\/svg+xml;\n\n    ## Logs\n    access_log off;\n    error_log \/var\/log\/nginx\/error.log warn;\n\n    include \/etc\/nginx\/conf.d\/*.conf;\n}\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 VirtualHost padr\u00e3o (proxy para Apache)<\/h2>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/nginx\/conf.d\/site.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>server {\n    listen 80;\n    server_name example.com www.example.com;\n\n    root \/home\/example\/domains\/example.com\/public_html;\n    index index.php index.html;\n\n    ## Arquivos est\u00e1ticos (Nginx)\n    location ~* \\.(css|js|jpg|jpeg|png|gif|ico|svg|woff2?|ttf)$ {\n        expires 365d;\n        add_header Cache-Control &quot;public, immutable&quot;;\n        access_log off;\n        try_files $uri =404;\n    }\n\n    ## Proxy para Apache\n    location \/ {\n        try_files $uri @apache;\n    }\n\n    location @apache {\n        proxy_pass http:\/\/127.0.0.1:8080;\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n    }\n}\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\ud83d\udd35 2\ufe0f\u20e3 APACHE (MPM EVENT)<\/h1>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/httpd\/conf.modules.d\/00-mpm.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>LoadModule mpm_event_module modules\/mod_mpm_event.so\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/httpd\/conf\/httpd.conf<\/strong> (ou custom no DirectAdmin)<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ServerTokens Prod\nServerSignature Off\nTimeout 60\n\nKeepAlive On\nMaxKeepAliveRequests 100\nKeepAliveTimeout 2\n\nListen 127.0.0.1:8080\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 MPM Event (alto tr\u00e1fego)<\/h2>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/httpd\/conf.d\/mpm_event.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;IfModule mpm_event_module&gt;\n    ServerLimit             32\n    StartServers             4\n    MinSpareThreads         64\n    MaxSpareThreads        256\n    ThreadLimit             64\n    ThreadsPerChild         25\n    MaxRequestWorkers      800\n    MaxConnectionsPerChild 5000\n&lt;\/IfModule&gt;\n<\/pre><\/div>\n\n\n\n<p>\u2714 Suporta milhares de conex\u00f5es simult\u00e2neas<br>\u2714 Apache s\u00f3 processa PHP (sem est\u00e1ticos)<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"h-3-php-fpm-cloudlinux\">\ud83d\udfe3 3\ufe0f\u20e3 PHP-FPM (CloudLinux)<\/h1>\n\n\n\n<p>\ud83d\udcc1 <strong>\/usr\/local\/php83\/etc\/php-fpm.d\/example.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>[example]\nuser = example\ngroup = example\n\nlisten = \/usr\/local\/php83\/sockets\/example.sock\nlisten.owner = example\nlisten.group = nginx\nlisten.mode = 0660\n\npm = ondemand\npm.max_children = 80\npm.process_idle_timeout = 10s\npm.max_requests = 500\n\nrequest_terminate_timeout = 120s\n\nphp_admin_value[memory_limit] = 256M\nphp_admin_value[max_execution_time] = 120\nphp_admin_value[post_max_size] = 128M\nphp_admin_value[upload_max_filesize] = 128M\n<\/pre><\/div>\n\n\n\n<p>\ud83d\udccc <strong>C\u00e1lculo aplicado<\/strong>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>~80 MB por processo \u00d7 80 children \u2248 6.4 GB\n<\/pre><\/div>\n\n\n\n<p>Seguro para VPS 12 GB.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 OPcache (OBRIGAT\u00d3RIO)<\/h2>\n\n\n\n<p>\ud83d\udcc1 <strong>\/usr\/local\/php83\/etc\/php.d\/10-opcache.ini<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>opcache.enable=1\nopcache.enable_cli=0\nopcache.memory_consumption=256\nopcache.interned_strings_buffer=32\nopcache.max_accelerated_files=100000\nopcache.validate_timestamps=0\nopcache.revalidate_freq=0\nopcache.fast_shutdown=1\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u2699\ufe0f 4\ufe0f\u20e3 Kernel (sysctl)<\/h1>\n\n\n\n<p>\ud83d\udcc1 <strong>\/etc\/sysctl.d\/99-performance.conf<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>net.core.somaxconn = 65535\nnet.ipv4.tcp_fin_timeout = 15\nnet.ipv4.tcp_tw_reuse = 1\nfs.file-max = 1000000\n<\/pre><\/div>\n\n\n\n<p>Aplicar:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sysctl --system\n<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u2705 5\ufe0f\u20e3 Checklist final<\/h1>\n\n\n\n<p>\u2714 Nginx serve est\u00e1ticos<br>\u2714 Apache s\u00f3 PHP<br>\u2714 MPM Event ativo<br>\u2714 PHP-FPM ondemand<br>\u2714 OPcache configurado<br>\u2714 KeepAlive curto<br>\u2714 Proxy otimizado<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/helpsysadmin.com.br\" target=\"_blank\" rel=\"noreferrer noopener\">Clique aqui e consulte nossos planos de Gerenciamento de Servidor<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A seguir est\u00e1 um guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2519,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,1279,1921],"tags":[18,3],"class_list":["post-2206","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-gerenciamento-servidor","category-linux","category-rede","tag-seguranca","tag-servidor-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego<\/title>\n<meta name=\"description\" content=\"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\/RAM\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego\" \/>\n<meta property=\"og:description\" content=\"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\/RAM\" \/>\n<meta property=\"og:url\" content=\"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog HelpSysAdmin\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-25T10:04:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-13T20:07:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"735\" \/>\n\t<meta property=\"og:image:height\" content=\"468\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"HelpSysAdmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brhelpsysad\" \/>\n<meta name=\"twitter:site\" content=\"@brhelpsysad\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/\"},\"author\":{\"name\":\"HelpSysAdmin\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\"},\"headline\":\"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego\",\"datePublished\":\"2025-12-25T10:04:19+00:00\",\"dateModified\":\"2026-01-13T20:07:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/\"},\"wordCount\":433,\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/12\\/nginx_apache.webp\",\"keywords\":[\"seguran\u00e7a\",\"servidor linux\"],\"articleSection\":[\"Gerenciamento de Servidor\",\"Linux\",\"Rede\"],\"inLanguage\":\"pt-BR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/\",\"name\":\"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/12\\/nginx_apache.webp\",\"datePublished\":\"2025-12-25T10:04:19+00:00\",\"dateModified\":\"2026-01-13T20:07:40+00:00\",\"description\":\"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\\\/RAM\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#primaryimage\",\"url\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/12\\/nginx_apache.webp\",\"contentUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/12\\/nginx_apache.webp\",\"width\":735,\"height\":468},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"name\":\"Blog HelpSysAdmin\",\"description\":\"Blog Gerenciamento de Servidor\",\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"alternateName\":\"HelpSysAdmin Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\",\"name\":\"HelpSysAdmin Gerenciamento de Servidores\",\"alternateName\":\"HelpSysAdmin\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"contentUrl\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"HelpSysAdmin Gerenciamento de Servidores\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/brhelpsysad\",\"https:\\\/\\\/mastodon.social\\\/@helpsysadmin\"],\"description\":\"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\",\"name\":\"HelpSysAdmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/litespeed\\/avatar\\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343\",\"url\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/litespeed\\/avatar\\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343\",\"contentUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/litespeed\\/avatar\\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343\",\"caption\":\"HelpSysAdmin\"},\"sameAs\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego","description":"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\/RAM","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/","og_locale":"pt_BR","og_type":"article","og_title":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego","og_description":"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\/RAM","og_url":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/","og_site_name":"Blog HelpSysAdmin","article_published_time":"2025-12-25T10:04:19+00:00","article_modified_time":"2026-01-13T20:07:40+00:00","og_image":[{"width":735,"height":468,"url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp","type":"image\/webp"}],"author":"HelpSysAdmin","twitter_card":"summary_large_image","twitter_creator":"@brhelpsysad","twitter_site":"@brhelpsysad","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#article","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/"},"author":{"name":"HelpSysAdmin","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb"},"headline":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego","datePublished":"2025-12-25T10:04:19+00:00","dateModified":"2026-01-13T20:07:40+00:00","mainEntityOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/"},"wordCount":433,"publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp","keywords":["seguran\u00e7a","servidor linux"],"articleSection":["Gerenciamento de Servidor","Linux","Rede"],"inLanguage":"pt-BR"},{"@type":"WebPage","@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/","url":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/","name":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#primaryimage"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp","datePublished":"2025-12-25T10:04:19+00:00","dateModified":"2026-01-13T20:07:40+00:00","description":"guia pr\u00e1tico e testado para otimizar Apache + Nginx em proxy reverso focando alto tr\u00e1fego, baixo TTFB e uso eficiente de CPU\/RAM","breadcrumb":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#primaryimage","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/12\/nginx_apache.webp","width":735,"height":468},{"@type":"BreadcrumbList","@id":"https:\/\/helpsysadmin.com.br\/blog\/como-otimizar-apache-nginx-proxy-reverso-para-alto-trafego\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/helpsysadmin.com.br\/blog\/"},{"@type":"ListItem","position":2,"name":"Como otimizar Apache + Nginx (proxy reverso) para alto tr\u00e1fego"}]},{"@type":"WebSite","@id":"https:\/\/helpsysadmin.com.br\/blog\/#website","url":"https:\/\/helpsysadmin.com.br\/blog\/","name":"Blog HelpSysAdmin","description":"Blog Gerenciamento de Servidor","publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"alternateName":"HelpSysAdmin Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/helpsysadmin.com.br\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization","name":"HelpSysAdmin Gerenciamento de Servidores","alternateName":"HelpSysAdmin","url":"https:\/\/helpsysadmin.com.br\/blog\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","width":512,"height":512,"caption":"HelpSysAdmin Gerenciamento de Servidores"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/brhelpsysad","https:\/\/mastodon.social\/@helpsysadmin"],"description":"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb","name":"HelpSysAdmin","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/litespeed\/avatar\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/litespeed\/avatar\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/litespeed\/avatar\/e587d5e97a45d2f6f29b0179adc1ebf4.jpg?ver=1777250343","caption":"HelpSysAdmin"},"sameAs":["https:\/\/helpsysadmin.com.br\/blog\/"]}]}},"lang":"pt","translations":{"pt":2206},"pll_sync_post":{},"_links":{"self":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/2206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/comments?post=2206"}],"version-history":[{"count":3,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/2206\/revisions"}],"predecessor-version":[{"id":2585,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/2206\/revisions\/2585"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media\/2519"}],"wp:attachment":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media?parent=2206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/categories?post=2206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/tags?post=2206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}