Apache is not intentionally ignoring anything. If there is search data submitted along with requests it should be in the logs, however we use a custom log string, which tools that look through Apache logs to generate stats may not properly work with. ( https://git.insomnia247.nl/puppet/modules/-/blob/master/site_apache/templates/vhost/local_ssl.erb?ref_type=heads#L90 ) HTTPS://Git.Insomnia247.NL/puppet/modules/-/blob/master/site_apache/templates/vhost/local_ssl.erb?ref_type=heads#L90 showed on 3rd July 2024: "Ifmodule the bw module in all templates Cool Fire authored 2 years ago 60172f64 local_ssl.erb 2.56 KiB ServerName <%= @domain.downcase %> ServerAlias www.<%= @domain.downcase %> <% @aliases.each do |sa| -%> ServerAlias <%= sa %> <% end -%> DocumentRoot <%= @documentroot %>/ <% unless @customdirectives.nil? -%> <%= @customdirectives %> <% end -%> > AllowOverride All Options MultiViews Indexes FollowSymlinks IncludesNoExec <% if @requirelimits -%> Require all granted Require all denied <% end -%> SSLEngine on <% unless @gzip -%> SetEnv no-gzip 1 <% end -%> <% if @customdomain -%> SSLCertificateFile /etc/letsencrypt/live/LE_<%= @user -%>_<%= @domain -%>/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/LE_<%= @user -%>_<%= @domain -%>/privkey.pem SSLCertificateChainFile /etc/letsencrypt/live/LE_<%= @user -%>_<%= @domain -%>/chain.pem <% else -%> SSLCertificateFile <%= @certfile %> SSLCertificateKeyFile <%= @keyfile %> SSLCertificateChainFile <%= @cafile %> <% end -%> <% if @strongtls -%> Include /etc/apache2/ssl-strong.conf <% else -%> Include /etc/apache2/ssl-medium.conf <% if @hsts -%> Header always add Strict-Transport-Security "max-age=31536000" <% end -%> <% end -%> <% if @systemvhost -%> QS_SrvMaxConnPerIP 120 ErrorLog /var/log/apache2/<%= @domain %>_ssl_error.log CustomLog /var/log/apache2/<%= @domain %>_ssl_access.log "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" <% else -%> /cgi-bin> AllowOverride FileInfo AuthConfig Limit Indexes Options -MultiViews +SymLinksIfOwnerMatch +ExecCGI SetHandler cgi-script <% if @requirelimits -%> Require all granted Require all denied <% end -%> QS_SrvMaxConnPerIP 30 AssignUserId <%= @user %>-www <%= @user %> BandWidthModule <%= @bwlimit.zero? ? 'Off' : 'On' %> ForceBandWidthModule <%= @bwlimit.zero? ? 'Off' : 'On' %> BandWidth all <%= @bwlimit %> ErrorLog /home/<%= @user %>/http_logs/<%= @domain %>_ssl_error.log CustomLog /home/<%= @user %>/http_logs/<%= @domain %>_ssl_access.log "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" <% end -%> "