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

Side by Side Diff: LayoutTests/http/conf/apache2-httpd.conf

Issue 146173004: Fix run-blink-httpd to work w/ Apache and refactor webkitpy.layout_tests.servers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add cli_wrapper and update run-* scripts Created 6 years, 10 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Tools/Scripts/run-blink-httpd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ServerRoot "/usr"
2
3 LockFile "/tmp/WebKit/httpd.lock" 1 LockFile "/tmp/WebKit/httpd.lock"
4 PidFile "/tmp/WebKit/httpd.pid"
5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" 2 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
6 3
7 Timeout 300 4 Timeout 300
8 KeepAlive On 5 KeepAlive On
9 MaxKeepAliveRequests 100 6 MaxKeepAliveRequests 100
10 KeepAliveTimeout 15 7 KeepAliveTimeout 15
11 8
12 MinSpareServers 1
13 MaxSpareServers 5
14 StartServers 1
15 MaxClients 150 9 MaxClients 150
16 MaxRequestsPerChild 100000 10 MaxRequestsPerChild 100000
17 11
18 LoadModule authz_host_module libexec/apache2/mod_authz_host.so 12 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
19 LoadModule include_module libexec/apache2/mod_include.so 13 LoadModule include_module libexec/apache2/mod_include.so
20 LoadModule log_config_module libexec/apache2/mod_log_config.so 14 LoadModule log_config_module libexec/apache2/mod_log_config.so
21 LoadModule headers_module libexec/apache2/mod_headers.so 15 LoadModule headers_module libexec/apache2/mod_headers.so
22 LoadModule ssl_module libexec/apache2/mod_ssl.so 16 LoadModule ssl_module libexec/apache2/mod_ssl.so
23 LoadModule mime_module libexec/apache2/mod_mime.so 17 LoadModule mime_module libexec/apache2/mod_mime.so
24 LoadModule asis_module libexec/apache2/mod_asis.so 18 LoadModule asis_module libexec/apache2/mod_asis.so
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 Order allow,deny 141 Order allow,deny
148 Deny from all 142 Deny from all
149 Satisfy All 143 Satisfy All
150 </Files> 144 </Files>
151 145
152 <Directory ~ ".*\.\.namedfork"> 146 <Directory ~ ".*\.\.namedfork">
153 Order allow,deny 147 Order allow,deny
154 Deny from all 148 Deny from all
155 Satisfy All 149 Satisfy All
156 </Directory> 150 </Directory>
OLDNEW
« no previous file with comments | « no previous file | Tools/Scripts/run-blink-httpd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698