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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/arch-httpd-2.4.conf

Issue 2444633002: Change ArchLinux httpd config to php7 (from php5) (Closed)
Patch Set: 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 | « no previous file | 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/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
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698