For the configuration I had used the options:
configure --with-layout=OpenBSD --enable-module=proxy
--enable-module=expires --enable-rule=INET6
I also tried it with:
configure.v6 --with-layout=OpenBSD --enable-module=proxy
--enable-module=expires
I also tried it without mod_expires. Attached is the config file. I also
thought I should mention that normal serving works, just not proxying,
which worked for IPv4 and IPv6 until I upgraded.
Steven Jeffers
> the problem does not repeat for me on NetBSD-current
> (i can contact http://www.kame.net by using the example you have
sent).
> could you send the config file? how did you configure it?
> (did you use "configure.v6" not "configure"?)
>
> itojun
ServerType standalone
ServerRoot "/var/www"
PidFile /var/www/logs/httpd.pid
ScoreBoardFile /var/www/logs/httpd.scoreboard
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
MaxClients 150
MaxRequestsPerChild 0
Listen 127.0.0.1 80
Listen ::1 80
Listen 129.63.206.90 80
Listen 3ffe:b00:c18:1fff:0:0:0:51f 80
#BindAddress *
Port 80
User www
Group www
ServerAdmin [EMAIL PROTECTED]
DocumentRoot "/var/www/forban"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/var/www/forban">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
CacheNegotiatedDocs
UseCanonicalName On
<IfModule mod_mime.c>
TypesConfig /var/www/conf/mime.types
</IfModule>
DefaultType text/plain
<IfModule mod_mime_magic.c>
MIMEMagicFile /var/www/conf/magic
</IfModule>
HostnameLookups Off
ErrorLog /var/www/logs/error_log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /var/www/logs/access_log common
ServerSignature On
<IfModule mod_alias.c>
Alias /icons/ "/var/www/icons/"
<Directory "/var/www/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_mime.c>
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
<IfModule mod_negotiation.c>
LanguagePriority en da nl et fr de el it ja pl pt pt-br ltz ca es sv
</IfModule>
AddType application/x-tar .tgz
</IfModule>
<IfModule mod_setenvif.c>
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
</IfModule>
<IfModule mod_proxy.c>
ProxyRequests On
<Directory proxy:*>
Order deny,allow
Deny from none
Allow from all
</Directory>
ProxyVia On
CacheRoot "/var/www/proxy"
CacheSize 10485760
CacheGcInterval 1
CacheMaxExpire 1000000
CacheLastModifiedFactor 0.2
CacheDefaultExpire 1000000
NoCache uml.edu
CacheDirLevels 5
CacheDirLength 2
</IfModule>