W dniu 28.07.2016 o 19:51, Stefan Sperling pisze:
> Let's work some more on making sure keep-alives are configured correctly:
>
> Please ensure the KeepAlive directive is set to 'On'.
> http://httpd.apache.org/docs/2.4/mod/core.html#keepalive
> KeepAlive On
>
> And that the KeepAliveTimeout is set to at least 300 seconds:
> http://httpd.apache.org/docs/2.4/mod/core.html#keepalivetimeout
> KeepAliveTimeout 300
>
> Does this help?
Unfortunately no.
> If it does not, please share more details about your server-side
> authentication configuration in httpd.conf and related files.
Below please find the server configuration file as well as a snippet from server log which shows that some URLs are
returned as 401 instead of 200.
91.177.53.186 - verhaegs [28/Jul/2016:20:23:32 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Afghanistan HTTP/1.1" 200 983 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:32 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Georgia HTTP/1.1" 200 815 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:32 +0200] "GET
/svn/aros/!svn/rvr/47214/trunk/AROS/workbench/locale/flags/countries/Switzerland HTTP/1.1" 200 787 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:32 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Burundi HTTP/1.1" 200 971 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:32 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Northern_Ireland HTTP/1.1" 200 934 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:33 +0200] "GET
/svn/aros/!svn/rvr/47219/trunk/AROS/workbench/locale/flags/countries/Denmark HTTP/1.1" 200 787 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:33 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Kazakhstan HTTP/1.1" 200 966 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:33 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Taiwan HTTP/1.1" 401 831 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:33 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/North_Korea HTTP/1.1" 401 831 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
91.177.53.186 - verhaegs [28/Jul/2016:20:23:33 +0200] "GET
/svn/aros/!svn/rvr/47210/trunk/AROS/workbench/locale/flags/countries/Burkina_Faso HTTP/1.1" 401 831 "-" "SVN/1.9.4
(x86_64-redhat-linux-gnu) serf/1.3.8"
<Directory __HOME__/www/trac>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<VirtualHost *:80>
ServerName trac.aros.org:80
RewriteEngine on
Redirect / https://trac.aros.org/
</VirtualHost>
<VirtualHost *:443>
ServerName trac.aros.org:443
DocumentRoot "__HOME__/www/trac/empty"
SSLCertificateFile __HOME__/www/trac.aros.org.cert
SSLCertificateKeyFile __HOME__/www/trac.aros.org.key
SSLEngine on
ErrorLog __HOME__/www/logs/error.log
CustomLog __HOME__/www/logs/access.log combined
RedirectMatch /$ /trac
<Directory "__HOME__/www/trac/cgi-bin">
Options ExecCGI
</Directory>
Alias /trac/chrome/common __HOME__/www/trac/htdocs/common
Alias /trac/chrome/site __HOME__/www/trac/htdocs/site
ScriptAlias /trac __HOME__/www/trac/cgi-bin/trac.cgi
<Location "/trac">
SetEnv TRAC_ENV "__HOME__/www/trac"
</Location>
</VirtualHost>
<VirtualHost *:443>
ServerName svn.aros.org:443
DocumentRoot "__HOME__/www/trac/empty"
SSLCertificateFile __HOME__/www/svn.aros.org.cert
SSLCertificateKeyFile __HOME__/www/trac.aros.org.key
SSLEngine on
ErrorLog __HOME__/www/logs/error.log
CustomLog __HOME__/www/logs/access.log combined
<Location /svn/aros>
DAV svn
SVNPath __HOME__/www/svn/aros
AuthzSVNAccessFile __HOME__/www/admin/svnauthz
AuthName "AROS TRAC+SVN"
AuthType Digest
AuthUserFile __HOME__/www/admin/htdigest
Require valid-user
</Location>
</VirtualHost>
Received on 2016-07-29 20:43:29 CEST