Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: third_party/WebKit/Tools/Scripts/apache_config/debian-httpd-2.4.conf

Issue 2502893002: Update Debian and Ubuntu Apache configuration. (Closed)
Patch Set: Avoid duplication Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ServerTokens Prod 1 ServerTokens Prod
2 ServerRoot "/usr/lib/apache2" 2 ServerRoot "/usr/lib/apache2"
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
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 Include /etc/apache2/mods-available/php*.load
32 LoadModule asis_module modules/mod_asis.so 32 LoadModule asis_module modules/mod_asis.so
33 33
34 ServerName 127.0.0.1 34 ServerName 127.0.0.1
35 35
36 <Directory /> 36 <Directory />
37 Options Indexes FollowSymLinks MultiViews ExecCGI Includes 37 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
38 AllowOverride All 38 AllowOverride All
39 Require all granted 39 Require all granted
40 </Directory> 40 </Directory>
41 41
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 AddType application/x-x509-ca-cert .crt 106 AddType application/x-x509-ca-cert .crt
107 AddType application/x-pkcs7-crl .crl 107 AddType application/x-pkcs7-crl .crl
108 108
109 AddHandler cgi-script .cgi .pl 109 AddHandler cgi-script .cgi .pl
110 110
111 AddType text/html .shtml 111 AddType text/html .shtml
112 AddOutputFilter INCLUDES .shtml 112 AddOutputFilter INCLUDES .shtml
113 113
114 AddHandler send-as-is asis 114 AddHandler send-as-is asis
115 115
116 <IfModule mod_php5.c> 116 AddType application/x-httpd-php .php
Jack Bates 2016/11/15 15:48:47 The module is loaded unconditionally, so <IfModule
117 AddType application/x-httpd-php .php 117 AddType application/x-httpd-php .bat
118 AddType application/x-httpd-php .bat 118 AddType application/x-httpd-php-source .phps
119 AddType application/x-httpd-php-source .phps
120 119
121 <IfModule mod_dir.c> 120 <IfModule mod_dir.c>
122 DirectoryIndex index.html index.php 121 DirectoryIndex index.html index.php
123 </IfModule> 122 </IfModule>
124 123
125 php_flag log_errors on 124 php_flag log_errors on
126 php_flag short_open_tag on 125 php_flag short_open_tag on
127 </IfModule>
128 126
129 <IfModule mod_rewrite.c> 127 <IfModule mod_rewrite.c>
130 RewriteEngine On 128 RewriteEngine On
131 RewriteCond %{REQUEST_METHOD} ^TRACE 129 RewriteCond %{REQUEST_METHOD} ^TRACE
132 RewriteRule .* - [F] 130 RewriteRule .* - [F]
133 </IfModule> 131 </IfModule>
134 132
135 <VirtualHost *:8443> 133 <VirtualHost *:8443>
136 ServerName 127.0.0.1 134 ServerName 127.0.0.1
137 SSLEngine On 135 SSLEngine On
138 </VirtualHost> 136 </VirtualHost>
139 137
140 # 138 #
141 # Apple-specific filesystem protection. 139 # Apple-specific filesystem protection.
142 # 140 #
143 <Files "rsrc"> 141 <Files "rsrc">
144 Require all denied 142 Require all denied
145 </Files> 143 </Files>
146 144
147 <Directory ~ ".*\.\.namedfork"> 145 <Directory ~ ".*\.\.namedfork">
148 Require all denied 146 Require all denied
149 </Directory> 147 </Directory>
OLDNEW
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698