Franky: LoadModule und AddModule

Hallo.

ich arbeite gerade an einer Präsentation zum Thema Webserver. Dort behandle ich explizit den Apache.
Nun bin ich beim Thema "Module" angelangt. Herausgefunden habe ich, dass Module mit LoadModule in der httpd.conf geladen werden. Wozu braucht man dann noch ein AddModule, und warum ist die Datei dann meist eine .c-Datei?

Wäre dankbar wenn ihr mir das kurz erklären könntent.

Viele Grüße
Franky

  1. Nun bin ich beim Thema "Module" angelangt. Herausgefunden habe ich, dass Module mit LoadModule in der httpd.conf geladen werden. Wozu braucht man dann noch ein AddModule, und warum ist die Datei dann meist eine .c-Datei?

    RTFM

    http://httpd.apache.org/docs/1.3/mod/core.html#addmodule

    The server can have modules compiled in which are not actively in use. This directive can be used to enable the use of those modules.

    http://httpd.apache.org/docs/1.3/mod/mod_so.html#loadmodule

    The LoadModule directive links in the object file or library filename and adds the module structure named module to the list of active modules...

    Gruß