ServerName localhost ServerRoot "${server_dir}" Include "conf/modules.conf" DocumentRoot "${server_dir}/htdocs" LogFormat "{ \"request\": \"%r\", \"status\": %>s, \"bytes_resp_B\": %B, \"bytes_tx_O\": %O, \"bytes_rx_I\": %I, \"bytes_rx_tx_S\": %S, \"time_taken\": %D }" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog "logs/access_log" combined TypesConfig "${gen_dir}/apache/conf/mime.types" Listen ${http_port} Listen ${https_port} # provide some default SSLSessionCache "shmcb:ssl_gcache_data(32000)" # Insert our test specific configuration before the first vhost, # so that its vhosts can be the default one. This is relevant in # certain behaviours, such as protocol selection during SSL ALPN # negotiation. # Include "conf/test.conf" RequestReadTimeout header=10 body=10 AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css AddOutputFilterByType BROTLI_COMPRESS text/html text/plain text/xml text/css ServerName ${http_tld} ServerAlias www.${http_tld} SSLEngine off DocumentRoot "${server_dir}/htdocs" Options Indexes FollowSymLinks AllowOverride None Require all granted AddHandler cgi-script .py AddHandler cgi-script .cgi Options +ExecCGI