Tagged Questions
0
votes
0answers
11 views
Apache2 mod_proxy_balancer on Solaris 10 Sparc 64bit
I want to have intelligent load balancing with specific rules for my applications. Apache2 mod_proxy_balancer looks appropriate but I am having real trouble getting it on my servers.
The servers we ...
-1
votes
2answers
55 views
How to install apache module imap? [closed]
Can someone provide insight in how to install an apache module like mod_imap.so? I have a straightforward install of apache, yet I am not sure how to get modules enabled.
In my /etc/httpd/modules, it ...
0
votes
0answers
19 views
Apache Module - How to Block a IP address in pre_connection hook handler
Recently, i develop an Apache Module for prevent a SYN flood attack. I am newbie and i need some guide to accomplish this project.
#include "httpd.h"
#include "http_config.h"
#include ...
-2
votes
1answer
56 views
Apache Module - block an IP address
Can i block an IP address in apache module?
i searched it, but it comes up with no answer, is it true?
0
votes
0answers
15 views
Can you determine the number of login attempts when using Apache's auth_form_module?
I'm using apache2.4's auth_form_module.
I'd like to know how many times the user has attempted to login so I can print the appropriate error messages.
Is there a built-in way to do this or is there ...
1
vote
1answer
543 views
Should i use Websocket module in Apache?
I'm trying to integrate the websocket into existing application.
Based on my search, i found a websocket module to do this, but it isn't updated yet.
https://github.com/disconnect/apache-websocket.
...
0
votes
0answers
44 views
how to find out request protocol in apache module
How I could find out whether request scheme is http or https in apache 2.2? I looked thought the request_rec structure, but could not find any working reference to the used scheme.
1
vote
1answer
162 views
Why dir_module does NOT seem to load, although clearly it is loaded in httpd.conf and modules folder?
I checked the httpd.conf file which has "LoadModule dir_module modules/mod_dir.so
" uncommented already. I also check the apache modules folder seeing that mod_dir.so is there too. BUT still the ...
3
votes
3answers
233 views
Running perl scripts like php without CGI
Is it possible to run Perl script in web server without using CGI?
I mean, like php scripts (run any .pl file without #!/path/to/interpreter line).
If Yes, How?
Thanks
1
vote
3answers
430 views
Installing Chamilo LMS - Remote server or file not found
After installing Chamilo 1.9 I get a:
Remote server or file not found
On domain.com/chamilo/index.php
When I open domain.com/chamilo/version.php (which is just ) it shows 5.3.15, where Chamilo ...
0
votes
1answer
68 views
x_sendfile does not load
I'm trying to install x_sendfile in apache web server on a Mac OS X Server.
Everything seems fine with the installation and the httpd.conf is configured with
"LoadModule xsendfile_module ...
0
votes
1answer
494 views
opening php file and i get do you want to open or save file
Recently I configured Apache 2.2 server to run PHP and have configured to load PHP 5 as a module. I am able to start Apache with no problems but when I try to run PHP files it pops up would you like ...
0
votes
2answers
168 views
can't keep connection socket in apache module
I'm trying to create an Apache module using socket to connect to the other server. It works well and I can retrieve data, but I have encountered three problems.
I can't keep connection with my ...
1
vote
0answers
103 views
Apache httpd module to authenticate against web service?
I'm looking to see if there's an available apache httpd module to do this or if I'll have to write my own. I want to be able to authenticate and authorize a user based on a RESTful web service call ...
0
votes
1answer
50 views
Where does the flow of execution begin in an apache module?
I'm looking at the code for an apache module and there is no main. How do I figure out where the code begins?