index

apache

apache

PATH_INFO

configuration (under gentoo)

/etc/init.d/apache2 reads /etc/conf.d/apache2, where I define -DSYMBOLS which then are used in /etc/apache2/ config files, like

<IfDefine FASTCGI>

languages:

i need Option Multiviews in the directory/tree see Content Negotiation http://httpd.apache.org/docs/2.0/mod/mod_negotiation.html

I had problems getting it to work, b/c i had doubled Location/Directory declarations:

The last (used) one was in the virtual host definition!

using subdomains for language versions:

en.domain signals put "en" into Accept-Language at the beginning. This is done by a simple apache module, which I hacked up.

Then I use:

LanguagePriority de it en 
ForceLanguagePriority Fallback

and virtual hosts!

advice for google: .en.html better than .html.en !

CharacterSet CharSet http://www.i18nguy.com/markup/serving.html

api docs

1.3

Design considerations for the Apache Server API

The Apache API (Apache: The Definitive Guide)

interpreters:

mod_lisp

home

http://www.cliki.net/mod_lisp cl-modlisp provides a Common Lisp interface to it....

mod_pipe

passing file-descriptors?

http://python.ca/nas/scgi/protocol.txt

fast cgi

(see also gauche-fastcgi)

the mod_fastcgi docs

my configs:

fastcgi-script fcg fcgi fpl

FastCgiConfig -autoUpdate

AllowOverride All SetHandler fastcgi-script

Options ExecCGI FollowSymLinks <IfModule mod_access.c> Order allow,deny Allow from all

FastCgiExternalServer /var/www/localhost/cgi-gauche/agenzia/virtual -host linux11:19999

AllowOverride All SetHandler fastcgi-script

# perl used Access handler! FastCgiAccessChecker /var/www/localhost/cgi-gauche/agenzia/virtual # FastCgiAccessChecker /var/www/localhost/cgi-gauche/agenzia/access.scm FastCgiAccessCheckerAuthoritative On

Options ExecCGI FollowSymLinks

# fast cgi does not support Custom failure responses!

ErrorDocument 403 http://maruska.dyndns.org/login ErrorDocument 303 http://maruska.dyndns.org/login?ahoj

# Allow: <IfModule mod_access.c> Order allow,deny Allow from all

Interaction between mod_rewrite, mod_alias etc

specifying ?

What is scriptalias, what is the equivalent using mod_rewrite? http://httpd.apache.org/docs/2.0/mod/mod_alias.html#scriptalias

http://www.enstimac.fr/Perl/perl5.6.1/site_perl/5.6.1/DBIx/Recordset.html

http://www.ecos.de/~mailarc/embperl/2004-05/

google:

http://www.google.com/webmasters/sitemaps/docs/en/sitemap-generator.html

Cookies

http://www.searchwin.net/cookies2.htm http://wp.netscape.com/newsref/std/cookie_spec.html http://www.kuro5hin.org/?op=displaystory;sid=2002/9/15/01845/1179

My hacking:

I used threebit tutorials as skeleton code! http://www.genedavis.com/library/apache_hello_mod/hello_mod.html

this is for 1.x ! http://modules.apache.org/doc/Intro_API_Prog.html

mod_perl book has Online chapters! mod_perl