Tagged Questions
0
votes
0answers
79 views
Apache mod_security: Protocol anomaly being triggered by Mod_PageSpeed. FP?
I have this same problem but i couldn't find an answer:
We run Google mod_pagespeed to improve performance through caching and HTML/CSS re-writing. The following rule has triggered:
Access denied ...
4
votes
1answer
342 views
recovering deleted file held open by apache?
suppose an apache log file gets deleted but its held open by apache then this is what i am doing.
pid=$(lsof | grep text.txt | awk '/deleted/ {print $2}')
fd=$(lsof | grep text.txt | awk '/deleted/ ...
3
votes
1answer
374 views
Bot requesting odd resource in apache logs
While studying for the RHSCA exam I set up my first home server and quickly found that bots had already started requesting commonly vulnerable files. It was alarming at first, then just purely amusing ...
2
votes
3answers
744 views
How can I debug Apache, not starting upon boot
Apache is already set up as a service, since:
$ sudo update-rc.d apache2 defaults
System start/stop links for /etc/init.d/apache2 already exist.
But Apache isn't starting. How can I start ...