Назад | Перейти на главную страницу

Как отключить журнал обратной связи «ОПЦИИ * HTTP / 1.0» 200 - «-» «Apache / 2.4.6 (CentOS) OpenSSL / 1.0.2k-fips PHP / 7.2.27 (внутреннее фиктивное соединение)

Я получил это в моем журнале access.log, поэтому я погуглил и нашел несколько указателей, но ни один из них не работает.

Как я могу прекратить ведение журнала:

loopback req "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.27 (internal dummy connection)

и это то, что я нашел в качестве разрешений в моем httpd.conf:

<IfModule mod_rewrite.c?>
        RewriteCond %{HTTP_USER_AGENT} ^.*internal\ dummy\ connection.*$ [NC]
        RewriteRule .* - [F,L]
</IfModule>
SetEnvIf Remote_Addr "127.0.0.1" dontlog
SetEnvIf Remote_Addr "::1" dontlog
SetEnvIf Remote_Addr "127\.0\.0\.1" loopback

а также в моем VirtualHost conf

    ServerAdmin root@localhost
    DocumentRoot /var/www/ads
    ServerName example.ltd
    <Directory /var/www/ads>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted
    </Directory>
    ErrorLog /var/log/httpd/example.ltd-error_log
    SetEnvIf Remote_Addr "127\.0\.0\.1" loopback
    CustomLog /var/log/httpd/example.ltd-access_log combined env=!loopback

RewriteCond %{HTTP_USER_AGENT} ^.*internal\ dummy\ connection.*$ [NC]
RewriteRule .* - [F,L] 
</VirtualHost>

также мой виртуальный хост ssl conf

<VirtualHost server ip:443>
        ServerAdmin root@localhost
        DocumentRoot /var/www/ads/
        ServerName example.tld
        ErrorLog /var/log/httpd/example.tld-error_log
        SetEnvIf Remote_Addr "127\.0\.0\.1" loopback
        CustomLog /var/log/httpd/example.tld-access_log combined env=!loopback

        RewriteCond %{HTTP_USER_AGENT} ^.*internal\ dummy\ connection.*$ [NC]
        RewriteRule .* - [F,L]



    <Directory  /var/www/ads>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted
    </Directory>
        SSLEngine on
        SSLCertificateFile /etc/letsencrypt/live/example.tld/cert.pem
        SSLCertificateKeyFile /etc/letsencrypt/live/example.tld/privkey.pem
</VirtualHost>

меня больше всего беспокоит то, что server-status показывает также req from :: 1