35

I've looked all over and can't really find much of anything. I need three basic things:

  1. Good API reference
  2. Some sort of a tutorial
  3. Good architectural overview

I have the module source code and am going through it - but I really don't have much of any context for most of the things its doing.

Any suggestions?

Brad
  • 11,262
  • 8
  • 55
  • 74
  • 2
    Nick Kew's book http://www.apachetutor.org/#book about apache module development is the most helpful resource I was able to find. – Boris Jan 22 '11 at 19:54
  • 1
    Yes, Nick Kew's book is indispensable! – Brad May 24 '11 at 14:23

1 Answers1

26

Here is the list of links about apache module development that I found useful:

Apache Tutor

Apache Modules Development and Debugging

libapr(apache portable runtime) programming tutorial

The Apache Modules Book: Application Development with Apache

Mailing list archives

Apache at WebÞing

Writing portable C code with APR

Apache Modeling Project

You can also download the apache source code and experiment with mod_example.

Boris
  • 2,275
  • 20
  • 21
  • Thanks! I did get that book, and have been experementing with some of the modules - but I will check out the links you provided. Thank you! – Brad Jan 23 '11 at 02:45
  • 4
    I just wanted to clarify - that Nick Kew's book was by FAR the most helpful resource. – Brad Jul 17 '12 at 18:37