https://bz.apache.org/bugzilla/show_bug.cgi?id=65158
--- Comment #40 from Yann Ylavic <[email protected]> --- The logs from comment 35 seem to be missing many lines, notably the dumpio ones. There must be multiple ErroLog and/or LogLevel directives configured in the whole /usr/local/httpd/conf tree. I see that "/usr/local/httpd/conf/extra/010-std-80.conf" is included somehow, and that a VirtualHost is defined there, and possibly mod_php and other modules are loaded from there too. Let's try to avoid external configuration files Include(d) from "myhttpd.conf" now, and have a simple VirtualHost directly in the main configuration file like: Listen 80 <VirtualHost *:80> ServerName localhost LogLevel trace7 DumpIOInput on DumpIOoutput on DocumentRoot "/usr/local/httpd/htdocs" <Directory "/usr/local/httpd/htdocs"> Require all granted </Directory> </VirtualHost> and then copy "test.txt" in the directory "/usr/local/httpd/htdocs". The loaded modules could be limited to something like: LoadModule unixd_module modules/mod_unixd.so LoadModule mpm_event_module modules/mod_mpm_event.so LoadModule authn_core_module modules/mod_authn_core.so LoadModule authz_core_module modules/mod_authz_core.so LoadModule log_config_module modules/mod_log_config.so LoadModule dumpio_module modules/mod_dumpio.so That is, a minimal configuration.. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
