Tagged Questions
The apache2-module tag has no wiki summary.
7
votes
1answer
1k views
Where can I find good reference/tutorial on writing Apache modules (in C)?
I've looked all over and can't really find much of anything. I need three basic things:
Good API reference
Some sort of a tutorial
Good architectural overview
I have the module source code and am ...
6
votes
14answers
633 views
Learning C properly: yes or no?
My primary language is PHP, but I have done some (not very much) programming in other languages.
I've written 2 modules for Apache in C.
I wrote them in C because this was one of the things where ...
1
vote
1answer
70 views
How can my Apache 2 module tell if it is being called via an SSL request?
I have a module that needs to return a reference URI in its payload. If called via an SSL connection, I need to build a URI that has the https prefix. I can easily get the port number from the ...
1
vote
1answer
50 views
Apache Module: Output Keeps Growing on Each Request
I have an idea for a project based on the Apache module API. So, I am writing my first Apache module to learn the API- just a simple hostname lookup:
URL: ...
1
vote
1answer
148 views
Authentication Module Issues with Apache 2 and Perl
I am SharePoint Developer trying to get a Perl module to work with Subversion, but I think something is wrong with my syntax. I just need to get the username and password, pass it into the ...
1
vote
2answers
571 views
How to Debug an Apache Module
I've been writing an Apache module recently. It's been interesting to work with the memory pool paradigm, but I'm clearly not doing something right. I've got a segfault, and I cannot seem to find it. ...
0
votes
0answers
13 views
Applying Apache Retry-After header on a rolling schedule
I am experiencing server load issues on a public facing site. After investigation it appears that the 'Google Web Preview' bot is consuming a large proportion of the server resources between the ...
0
votes
0answers
26 views
Segmentation fault in Apache2 Module
I'm currently reading the book "The Apache Modules Book" to learn writing Apache2 modules.
I tried some examples from the book and in one case I get a segmentation fault, even if I completely ...
0
votes
0answers
56 views
Error Install apache2-prefork-dev for passenger
Hi guys I have the next problem when I go to install apache2-prefork-dev with this command:
sudo apt-get install apache2-prefork-dev:
.
.
.
The following packages have unmet dependencies:
...
0
votes
0answers
27 views
Not able to create a password protected directory with .htaccess
I have followed this to the T and still am unable to get a working password protect directory
Apache was installed using:
sudo aptitude install apache2 apache2.2-common apache2-mpm-prefork ...
0
votes
0answers
310 views
ruby on rails 3 apache 2 mod_xsendfile: Setting diffrent filename
I configured mod_sendfile for apache2. I tested it - works fine.
Now I tried to change filename for downloaded file, I used the method "filename"
e.g.
send_file ...
0
votes
0answers
37 views
Apache load modules code invocation in main()
I'm using Apache 2.2.17.
The main() is supposed to be loading modules listed in httpd.conf (like mod_cgi).
I was trying to find the function/code that does this in main() but I was only able to find ...
0
votes
1answer
222 views
How can I run my own apache module on Ubuntu 10.10
I want to play with my own apache module (in C or C++, maybe python), but I cannot find any solution for it. I missing apache header files (I have no httpd folder in /etc/apache2/ which contain ...
0
votes
1answer
24 views
Is this ok to use COM in Apache module
I need to write a module for Apache. The server will be running under Windows and it looks that I will need to utilize some functionality which is implemented as COM.
Is this ok to use COM in Apache ...
0
votes
1answer
69 views
Any luck with mod_libpq under Apache 2.2 and/or win32?
Has anyone had luck compiling mod_libpq for Apache 2? I know there were some fairly major changes so the source might have to be updated, but has it been done already by someone?
Also, has it been ...
0
votes
2answers
664 views
Strawberry Perl with mod_perl2: building Apache2 modules from CPAN
I have Strawberry Perl 5.10 and mod_perl2 installed per these instructions on the mod_perl mailing list without a problem. However, trying to install various Apache2:: modules that my scripts use ...
0
votes
1answer
482 views
Apache module in C: how to write data to client socket?
I have created a simple mod_perl module, which writes a 0-terminated string to the Flash-clients connecting to the port 843. It works ok, but uses 20m per httpd-child at my CentOS 5 Linux machine.
So ...
0
votes
1answer
62 views
Can an Apache module inject configuration in runtime?
I wonder if it's possible for an Apache module to change global config structures.
What I want to achieve is injecting new vhosts without Apache restart. Of course I'm aware that the changes would ...
0
votes
1answer
306 views
How to enable mod_proxy_ajp for Apache 2.2.14?
I have Apache 2.1.14 installed and running in production - due to a new requirement, I need to start using the module mod_proxy_ajp.
Running the './httpd -l' script does not show the compiled module ...