| OLD | NEW |
| 1 ServerTokens Prod | 1 ServerTokens Prod |
| 2 ServerRoot "/usr/lib/httpd" | 2 ServerRoot "/usr/lib/httpd" |
| 3 | 3 |
| 4 PidFile "/tmp/WebKit/httpd.pid" | 4 PidFile "/tmp/WebKit/httpd.pid" |
| 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" | 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" |
| 6 | 6 |
| 7 Timeout 300 | 7 Timeout 300 |
| 8 KeepAlive On | 8 KeepAlive On |
| 9 # Setting this value too low may change header size sometimes making flakey test
s. | 9 # Setting this value too low may change header size sometimes making flakey test
s. |
| 10 MaxKeepAliveRequests 0 | 10 MaxKeepAliveRequests 0 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 LoadModule authz_host_module modules/mod_authz_host.so | 21 LoadModule authz_host_module modules/mod_authz_host.so |
| 22 LoadModule include_module modules/mod_include.so | 22 LoadModule include_module modules/mod_include.so |
| 23 LoadModule headers_module modules/mod_headers.so | 23 LoadModule headers_module modules/mod_headers.so |
| 24 LoadModule mime_module modules/mod_mime.so | 24 LoadModule mime_module modules/mod_mime.so |
| 25 LoadModule negotiation_module modules/mod_negotiation.so | 25 LoadModule negotiation_module modules/mod_negotiation.so |
| 26 LoadModule actions_module modules/mod_actions.so | 26 LoadModule actions_module modules/mod_actions.so |
| 27 LoadModule alias_module modules/mod_alias.so | 27 LoadModule alias_module modules/mod_alias.so |
| 28 LoadModule rewrite_module modules/mod_rewrite.so | 28 LoadModule rewrite_module modules/mod_rewrite.so |
| 29 LoadModule cgi_module modules/mod_cgi.so | 29 LoadModule cgi_module modules/mod_cgi.so |
| 30 LoadModule ssl_module modules/mod_ssl.so | 30 LoadModule ssl_module modules/mod_ssl.so |
| 31 LoadModule php5_module modules/libphp5.so | 31 LoadModule php7_module modules/libphp7.so |
| 32 LoadModule asis_module modules/mod_asis.so | 32 LoadModule asis_module modules/mod_asis.so |
| 33 LoadModule unixd_module modules/mod_unixd.so | 33 LoadModule unixd_module modules/mod_unixd.so |
| 34 LoadModule log_config_module modules/mod_log_config.so | 34 LoadModule log_config_module modules/mod_log_config.so |
| 35 | 35 |
| 36 ServerName 127.0.0.1 | 36 ServerName 127.0.0.1 |
| 37 | 37 |
| 38 <Directory /> | 38 <Directory /> |
| 39 Options Indexes FollowSymLinks MultiViews ExecCGI Includes | 39 Options Indexes FollowSymLinks MultiViews ExecCGI Includes |
| 40 AllowOverride All | 40 AllowOverride All |
| 41 Require all granted | 41 Require all granted |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 AddType application/x-x509-ca-cert .crt | 108 AddType application/x-x509-ca-cert .crt |
| 109 AddType application/x-pkcs7-crl .crl | 109 AddType application/x-pkcs7-crl .crl |
| 110 | 110 |
| 111 AddHandler cgi-script .cgi .pl | 111 AddHandler cgi-script .cgi .pl |
| 112 | 112 |
| 113 AddType text/html .shtml | 113 AddType text/html .shtml |
| 114 AddOutputFilter INCLUDES .shtml | 114 AddOutputFilter INCLUDES .shtml |
| 115 | 115 |
| 116 AddHandler send-as-is asis | 116 AddHandler send-as-is asis |
| 117 | 117 |
| 118 <IfModule mod_php5.c> | 118 <IfModule mod_php7.c> |
| 119 AddType application/x-httpd-php .php | 119 AddType application/x-httpd-php .php |
| 120 AddType application/x-httpd-php .bat | 120 AddType application/x-httpd-php .bat |
| 121 AddType application/x-httpd-php-source .phps | 121 AddType application/x-httpd-php-source .phps |
| 122 | 122 |
| 123 <IfModule mod_dir.c> | 123 <IfModule mod_dir.c> |
| 124 DirectoryIndex index.html index.php | 124 DirectoryIndex index.html index.php |
| 125 </IfModule> | 125 </IfModule> |
| 126 | 126 |
| 127 php_flag log_errors on | 127 php_flag log_errors on |
| 128 php_flag short_open_tag on | 128 php_flag short_open_tag on |
| (...skipping 13 matching lines...) Expand all Loading... |
| 142 # | 142 # |
| 143 # Apple-specific filesystem protection. | 143 # Apple-specific filesystem protection. |
| 144 # | 144 # |
| 145 <Files "rsrc"> | 145 <Files "rsrc"> |
| 146 Require all denied | 146 Require all denied |
| 147 </Files> | 147 </Files> |
| 148 | 148 |
| 149 <Directory ~ ".*\.\.namedfork"> | 149 <Directory ~ ".*\.\.namedfork"> |
| 150 Require all denied | 150 Require all denied |
| 151 </Directory> | 151 </Directory> |
| OLD | NEW |