Ok, thank you.

I understand now that I will probably need to build the web server with all its modules included as shared, and if I will need a certain module, I will be able to add it using just httpd.conf. Until now I've tried to build it with as few as possible modules, and add more modules only if I will need them, but I don't think it is possible, or it is possible but not very easy.

Octavian

----- Original Message ----- From: "Jonathan Vanasco" <[EMAIL PROTECTED]>
To: "Octavian Rasnita" <[EMAIL PROTECTED]>
Cc: "Michael Peters" <[EMAIL PROTECTED]>; <modperl@perl.apache.org>
Sent: Friday, January 12, 2007 8:17 PM
Subject: Re: installing mod_perl for 2 servers



On Jan 12, 2007, at 12:21 PM, Octavian Rasnita wrote:

I know that, but the .so modules are not in the modules/ directory, and I need to compile them, but I don't know how.

make args on the build - you can specify what modules you want or don't , and if they're a .so or build in

For example, if I didn't specified it when I've installed the server, the module mod_rewrite is not installed, and it cannot be found in the modules/ directory, so I cannot just LoadModule ...

a lot of modules are built-in by default. they don't appear in the modules directory- they're in the http binary i think mod_rewrite falls in that category.

httpd -V
show compile settings

httpd -l
list compiled in modules

also, you can use -D arguments to apachectl that are passed into your httpd.conf file via the IfDefine functionality , and have httpd.conf files to act differently.

// Jonathan Vanasco

| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| FindMeOn.com - The cure for Multiple Web Personality Disorder
| Web Identity Management and 3D Social Networking
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| RoadSound.com - Tools For Bands, Stuff For Fans
| Collaborative Online Management And Syndication Tools
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Reply via email to