RE: [users@httpd] How to fix Apache HTTPD Unauthenticated/Open Web Proxy Vulnerability?

2024-10-04 Thread Shinde, Pramod K
. On Fri, Sep 27, 2024 at 7:31 AM Shinde, Pramod K mailto:pshi...@jjkeller.com.invalid>> wrote: Hello, We are using Apache HTTPD 2.4.53 for an internal content management system. It is not customer-facing. The security solution considers the proxy vulnerable to an "Unauthenticate

[users@httpd] How to fix Apache HTTPD Unauthenticated/Open Web Proxy Vulnerability?

2024-09-27 Thread Shinde, Pramod K
Hello, We are using Apache HTTPD 2.4.53 for an internal content management system. It is not customer-facing. The security solution considers the proxy vulnerable to an "Unauthenticated/Open Web Proxy Detected" vulnerability. After many back and forths with them to check if it's a false positiv

[users@httpd] httpd 2.4.59 High Memory / RAM usage after upgrading

2024-06-27 Thread Tim K
We are noticing that since we went from httpd 2.4.58 to 2.4.59 that memory usage on Linux our hosts have greatly increased. Previously they would be just around 15% used, now they sit mostly around 80% used. Is there any known memory issue with this version or anyone else experiencing this issue?

Re: [users@httpd] reverse proxying websocket connections

2023-07-04 Thread Helmut K. C. Tessarek
On 2023-07-04 03:58, Yann Ylavic wrote: Yes, they should be the same. Upgrade only takes place when requested AND accepted/switched by the backend server. Awesome. Thanks so much for the confirmation. Have a great day, K. C. -- regards Helmut K. C. Tessarek KeyID

[users@httpd] reverse proxying websocket connections

2023-07-03 Thread Helmut K. C. Tessarek
m:9080/ upgrade=websocket afaik the upgrade only takes place when it is requested by a header, unless upgrade=NONE or upgrade=ANY is set. Am I correct or are the not the same? Cheers, K. C. -- regards Helmut K. C. Tessarek KeyID 0x172380A011EF4944 Key fingerprint = 8A55 70C1 BD85 D34E

[users@httpd] Apache2+WEBDAB new HDD

2021-11-24 Thread k
In linux, can Apache2+WEBDAB work for attached HDD 10Tbytes. How can I set DocumentRoot? added HDD is /media/keizou/. 2021/11/16 Matsumula keizou - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional comma

[users@httpd] Can I add 2nd HDD for webdav?

2021-11-17 Thread k
Can I add 2nd HDD-14TB for webdav? Then I want change webdavroot for 2nd HDD. Keizou Matsumula - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Apache2 troubleshooting - newbie

2021-03-17 Thread S K
Solved with UFW On Wednesday, March 17, 2021, 03:03:05 PM EDT, S K wrote: >I think you misunderstood me. I used a browser from a PC ip 192.168.2.109 and >hence in this case perl code exists in my local pc 192.168.2.109 but this perl >code connects to MariaDB in 192.168.2.

Re: [users@httpd] Apache2 troubleshooting - newbie

2021-03-17 Thread S K
>I think you misunderstood me. I used a browser from a PC ip 192.168.2.109 and >hence in this case perl code exists in my local pc 192.168.2.109 but this perl >code connects to MariaDB in 192.168.2.109  Typo PC ip 192.168.2.102On Wednesday, March 17, 2021, 02:53:41 PM EDT, S

Re: [users@httpd] Apache2 troubleshooting - newbie

2021-03-17 Thread S K
.168.2.109  On Wednesday, March 17, 2021, 02:44:12 PM EDT, Richard wrote: > Date: Wednesday, March 17, 2021 17:03:51 + > From: S K > > Hi, this is my scenario (everything is within my LAN): > > BEFORE > I have my MariaDB in machine 192.168.1.209; I access the Mar

[users@httpd] Apache2 troubleshooting - newbie

2021-03-17 Thread S K
Hi, this is my scenario (everything is within my LAN): BEFORE I have my MariaDB in machine 192.168.1.209; I access the MariaDB using windows client DBeaver and works fine. I had a working ubuntu machine 192.168.1.209 and my Perl scripts could be executed in my local windows browser (192.168.1.xx

[users@httpd] RemoteIPHeader with a CDN/LoadBalancer/Httpd(mod_proxy)

2021-02-01 Thread Tim K
I have a CDN -> Load Balancer -> httpd (mod_proxy) -> tomcat. I'm trying to ensure that tomcat gets the correct client IP. Each of these proxies above are passing the client IP as a different header value. I want to be able to handle the header from both the CDN or Load Balancer (taking the CDN'

[users@httpd] Re: Custom Error Pages

2020-04-18 Thread Praveen Kumar K S
Hello, Any help would be appreciated. If any of you had done this before or published on blogs or somewhere, please suggest your inputs. Regards, Praveen On Thu, 16 Apr, 2020, 14:29 Praveen Kumar K S, wrote: > Hello, > > Thanks for your response. I had gone through errordocument. &g

[users@httpd] Re: Custom Error Pages

2020-04-16 Thread Praveen Kumar K S
anvanrossum/blog.adriaan.io/blob/gh-pages/_posts/2018-12-22-one-nginx-error-page-to-rule-them-all.md Regards, PK On Thu, Apr 16, 2020 at 1:22 AM Christophe JAILLET < christophe.jail...@wanadoo.fr> wrote: > Le 15/04/2020 à 08:24, Praveen Kumar K S a écrit : > > Hello, > >

[users@httpd] Custom Error Pages

2020-04-14 Thread Praveen Kumar K S
Hello, I'm looking for some help in configuring custom error pages in httpd 2.4.39 I'm compiling httpd and running it as a container. If someone can help me with the manuals or documentation, it will be helpful. Regards, Praveen Kumar K S +91-9986855625

[users@httpd] Re: apache and tomcat reverse proxy: tomcat page does not load

2019-12-23 Thread Alex K
It turned out to be a filter at web.xml of tomcat... Removing it the site is loading fine. On Sun, Dec 22, 2019 at 2:17 AM Alex K wrote: > Hi all, > > I have a simple reverse proxy setup with the following lines: > > ProxyRequests Off > ProxyPreserveHost On >

[users@httpd] apache and tomcat reverse proxy: tomcat page does not load

2019-12-21 Thread Alex K
Hi all, I have a simple reverse proxy setup with the following lines: ProxyRequests Off ProxyPreserveHost On ProxyPass /iforms/ http://localhost:8443/app/ ProxyPassReverse /iforms/ http://localhost:8443/app/ and relevant modules loaded: proxy_module (shared) proxy_balan

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
://localhost:8443/app/ On Thu, Dec 19, 2019 at 6:10 PM Alex K wrote: > CORRECTION > > On Thu, Dec 19, 2019 at 6:09 PM Alex K wrote: > >> Hi, >> >> On Thu, Dec 19, 2019 at 5:43 PM Eric Covener wrote: >> >>> > ProxyRequest

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
CORRECTION On Thu, Dec 19, 2019 at 6:09 PM Alex K wrote: > Hi, > > On Thu, Dec 19, 2019 at 5:43 PM Eric Covener wrote: > >> > ProxyRequests Off >> > ProxyPreserveHost On >> > ProxyPas

Re: [users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
Hi, On Thu, Dec 19, 2019 at 5:43 PM Eric Covener wrote: > > ProxyRequests Off > > ProxyPreserveHost On > > ProxyPass /var/www/myapp/ http://127.0.0.1:8443/ > > ProxyPassReverse /var/www/myapp/ http://localhost:8443/ > > The first pa

[users@httpd] Apache redirect to tomcat application

2019-12-19 Thread Alex K
Hi all, I have apache 2.4 servicing some php code. Apache is configured to service HTTPs pages. I have also a tomcat app which can be accessed at http://server_ip:8443/app. I need to be able to access the tomcat app within the main GUI which is build on php and accessed with HTTPs. I've tried t

[users@httpd] apache dead pids

2019-11-14 Thread K K
We are running apache in our environment with the version 2.4.27 apachectl -v Server version: Apache/2.4.27 (Red Hat) Server built: Jun 6 2018 13:30:38 over period of time I see httpd pids lying around holding memory and not serving any more requests as I see no LISTEN attached to that pid. p

Re: [users@httpd] Implementing REST API

2018-08-20 Thread Alex K
On Mon, Aug 20, 2018, 03:21 Miles Fidelman wrote: > On 8/19/18 5:48 PM, Danesh Daroui wrote: > > > Hello all! > > > > I hope that I am posing my question to a relevant mailing list! > > > > I am looking for a solution to implement a RESTful API server. I have > > tested and examined a bunch of so

Re: [users@httpd] Apache allowed OPTIONS

2018-06-25 Thread Alex K
5, 2018 at 3:21 AM, Nick Kew wrote: > > > On 13 Jun 2018, at 17:18, Alex K wrote: > > > > > > curl -sI -X OPTIONS http://169.254.254.55/webdav/ > > > > The PUT functions correctly if one tries to PUT a file but the issue is > that it is not listed and

Re: [users@httpd] https not working

2018-06-20 Thread Alex K
Hi, Have you enabled ssl and rewrite modules? I would verify also that there is no firewall blocking 443. Alex On Wed, Jun 20, 2018, 18:24 Mahmood Naderan wrote: > Hi, > My web site works on http without any problem. The location is > /var/www/html/shob/ and I want to define an HTTPS virtualho

Re: [users@httpd] Apache allowed OPTIONS

2018-06-14 Thread Alex K
pache.org/dav/propset/fs/1> MS-Author-Via: DAV Allow: OPTIONS,GET,HEAD,POST,DELETE,TRACE,PROPFIND,PROPPATCH,COPY,MOVE,LOCK,UNLOCK Content-Length: 0 Content-Type: httpd/unix-directory Thanx, Alex On Wed, Jun 13, 2018 at 11:08 PM, Yann Ylavic wrote: > On Wed, Jun 13, 2018 at 6:18 PM, Alex K

[users@httpd] Apache allowed OPTIONS

2018-06-13 Thread Alex K
Hi all, I have setup Webav with apache2. I am testing the setup on a Debian7 with apache 2.2.22. Although the webdav is functioning ok I have a third party application that needs to put files on the webdav folder and before it does that it checks the available methods that apache allows. This app

[users@httpd] Modifying request body and content type going to proxy url

2018-06-02 Thread Shiva Kumar K R
Hi All, I am able to configure httpd as reverse proxy, I have to modify json body in post request coming from client to URL encoded format before sending that to specific proxy server, I have searched for the answer on the internet but got nothing can anyone give a hint on this. Thanks, Shiva

Re: [users@httpd] Apache log analyzer?

2017-05-01 Thread Jerry K
I'm using Webalizer on both Solaris 10, Solaris 11 and OpenIndiana (open source Solaris based distro). Webalizer should work on any Unix or Unix clone with a compiler. Jerry On 04/29/17 03:38 AM, Freek de Kruijf wrote: I use webalizer on a Linux system. Don't know is this package is availa

Re: [users@httpd] how to enable TLS v1.1 and TLS v1.2 alone in Apache 2.4.10 ?

2017-04-28 Thread K R
https://serverfault.com/questions/314858/how-to-enable-tls-1-1-and-1-2-with-openssl-and-apache On Wed, Apr 19, 2017 at 7:37 AM, Chunduru, Krishnachaithanya < krishnachaithanya.chund...@broadridge.com> wrote: > Hi Eric/All, > > Can you please help me with the below. > > Regards, > Krishna > >

[users@httpd] rewrite/redirect help

2016-06-03 Thread K R
Hi all, i have a need to do the below req on the apache http://website/index?doc=line&ptr=&root=HLD -> http://website/index?doc=line&ptr= here is a dynamic variable e.g S1234 , S01234,P10338 appreciate any help thanks in advance.

Re: [users@httpd] url forwarding

2016-04-08 Thread K R
=content&topic=TVAR&popular=HOT-TOPIC> " on the redirect On Fri, Apr 8, 2016 at 11:57 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > K, > > On 4/8/16 2:35 PM, K R wrote: > > I hav

[users@httpd] url forwarding

2016-04-08 Thread K R
All, I have a need to setup a redirect for around 3000 pages which are in below format http://myhost.com/index?page=content&topic=TVAR&popular=HOT-TOPIC --> http://myhost.com/index?page=content&topic=TVAR and here TVAR can be any string ( we have now around 500 different key e.g ALW , CAW

Re: [users@httpd] Apache logging format

2016-01-28 Thread K R
we are using SAML . On Thu, Jan 28, 2016 at 11:52 AM, Richard < lists-apa...@listmail.innovate.net> wrote: > > > > Date: Thursday, January 28, 2016 09:38:47 -0800 > > From: K R > > > > Is there a way to capture user login user login failure in > > A

[users@httpd] Apache logging format

2016-01-28 Thread K R
Is there a way to capture user login user login failure in Apache logs. TIA

Re: [users@httpd] Suhosin vs. mod_security

2015-10-21 Thread Jerry K
Yep, I'm replying to a very old thread. ... OP, I am just wondering if you resolved your issue here, and if you are still using Suhosin? If not, did you move to mod_security, as other repliers had suggested, or something else? thank you, Jerry On 0

[users@httpd] redirect q

2015-09-29 Thread K R
Hi, I am trying to force redirect HTTP to HTTPS as below RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] but it fails with too many redirect error . appreciate any help . thanks Kart

[users@httpd] virtual host configuration

2015-07-23 Thread K R
Hi, my customer want to configure virtual host for 5 website in one apache environment . do i have to get 5 ip addresses from network team. Can someone please point me on how can i achieve the same Thanks in advance

[users@httpd] Apache redirect subdomain without changing the browser URL

2015-07-06 Thread Ashish k
Hi List I want to redirect http://subdomain.example.com to http://subdomain.example.com/subdomain (I donot want http://example.com/subdomain ) using rewrite rules only. Tried all possible ways unsuccessfully. I got some points over this excellent arrticle http://forums.hostgator.com

[users@httpd] how to trace a proxypass directive

2015-06-29 Thread K R
Hi, I am trying to use a proxypass and proxypass directive but it seems to be not working . How can I trace it . appreciate any pointers Thanks in advance Kart

[users@httpd] apache redirect q

2015-06-04 Thread K R
Hi, need to setup a rule for below source - > https://website1.com/prt/sell?yr=73 target -> https://website2.com/chn/hk/dg?yr=73 appreciate any help Thanks in advance

Re: [users@httpd] Is httpd impacted by openssl asn1 CVE?

2015-03-22 Thread Fred K
> Sent by MailWise <http://www.mail-wise.com/installation/2> – See your > emails as clean, short chats. > > > Original Message > From: Fred K > Sent: Saturday, March 21, 2015 04:22 PM > To: users@httpd.apache.org > Subject: [users@httpd] Is httpd impacted by openssl asn1 CVE? > >

[users@httpd] Is httpd impacted by openssl asn1 CVE?

2015-03-21 Thread Fred K
Hi In this week's openssl security announcement were two moderate CVE related to asn1. - when/where does the Apache httpd server (e.g. 2.4.12) actually use asn1? - does apache rely on openssl for asn1 and do we need to be concerned about: Segmentation fault in ASN1_TYPE_cmp (CVE-2015-0286) ASN.1 s

[users@httpd] MaxClients directive

2015-02-19 Thread David K
Hello Can somebody explain what the MaxClients directive really does and how it differs from total threads?I am using Worker MPM. What is considered a "Client" and how does it differ from a "thread"? By my own findings, a "Client" is != ip address. I can understand that MaxClients are restricte

[users@httpd] Learn more about how Apache writes log files to disk (and impact on i/o)

2014-12-18 Thread Bryan K. Walton
Hi, I'm trying to learn more about the technical details regarding how Apache writes to log files. Specifically, does Apache call an fsync() on log writes or perhaps just a close()? Just trying to figure out how much log writing contributes to disk i/o with Apache 2.2. I would appreciate any

Re: [users@httpd] RewriteEngine

2014-02-12 Thread Eric K. Dickinson
Thank you Unfortunately not available for our architecture. I will keep plugging. eric On 02/10/2014 09:13 PM, Michael Streeter wrote: On 2/10/2014 8:04 AM, Eric K. Dickinson wrote: Thank you very much. I gave it a go... Still no Joy, the attempts at directory recursion still end up in

Re: [users@httpd] RewriteEngine

2014-02-10 Thread Eric K. Dickinson
Thank you very much. I gave it a go... Still no Joy, the attempts at directory recursion still end up in the access log... More reading. eric On 02/07/2014 10:31 AM, Michael Streeter wrote: On 1/28/2014 10:09 AM, Eric K. Dickinson wrote: Good Morning. We have a bunch of WordPress sites

[users@httpd] RewriteEngine

2014-01-28 Thread Eric K. Dickinson
Good Morning. We have a bunch of WordPress sites. We also have a requirement to be scanned by Nessus and AppScan. This drives the caching on WordPress nuts. I have been able to significantly reduce this with a ReWriteRule. RewriteEngine on RewriteRule .*\.(dll|ini|exe|com)$ - [R=404,NC] Rewrite

Re: [users@httpd] Logs analyse

2013-07-31 Thread Jerry K
looking at the home page of both products, the last Webalizer update was April 2011. The last Awffull update was in 2008. Jerry On 07/26/13 08:17 AM, Christopher Schultz wrote: Vitthal, On Jul 26, 2013, at 7:18, wrote: Can anyone tell me the name of apache logs analyzer tool which is free

Re: [users@httpd] phpmyadmin auth

2013-07-09 Thread Jerry K
configure a local VPN, and only allow access from the VPN IP range is one possible "Plan B". Reviewing my own log files, its amazing how many malware hits there are for this particular software product. What ever you do, be as safe/secure as you can. Good Luck Jerry On 07/ 9/13 03:56 PM,

Re: [users@httpd] Corrupt OSX Apache Install

2013-05-08 Thread Jerry K
any time I make modifications to httpd.conf, or any of the files in the extra directory, I typically like to run the: # apachectl -t command. The "-t" switch will test the configuration file and alert me to any errors that I may have made prior to actually attempting to implement a new or up

[users@httpd] Apache server windows binary with LDAP modules

2013-01-25 Thread Baraneetharan K
Hi All, Im new to Apache server. Im trying setup Apache server and subversion with LDAP authentication using ApacheDS in Windows NT 2008 server. Im referring some setup guides available in the internet, they say to load mod_ldap.so and mod_authnz_ldap.so modules of Apache to integrate LDAP. ht

[users@httpd] [SUMMARY] Re: [users@httpd] Solaris 11 compile/configure problems with httpd 2.2.22 and 2.4.2

2012-07-03 Thread Jerry K
... I hope that this summary helps someone else. Jerry On 06/22/12 09:32 PM, Jerry K wrote: > I am experiencing problems with the configure script in attempting to > compile, and actually just running the ./configure script on (2) > different Solaris 11 Sparc based systems. >

[users@httpd] Solaris 11 compile/configure problems with httpd 2.2.22 and 2.4.2

2012-06-22 Thread Jerry K
I am experiencing problems with the configure script in attempting to compile, and actually just running the ./configure script on (2) different Solaris 11 Sparc based systems. Systems - T5120 w/32 Gb ram and ample disk space T2000 w/16 Gb ram and also ample disk space Both systems are

[users@httpd]

2011-07-19 Thread K N, Deepak
Dear Colleagues, Can I know the maximum file size limit for large file support in apache 2.2 ? Best Regards Deepak

Re: [users@httpd] mod_auth_cas for windows

2011-02-07 Thread K J.Sreekumar
I had gone through this link, which was not very clear. I had also tried building from source, and got lots of errors (missing header files) when compiling apache httpd on windows visual c++. As we are nearing a project release, I thought of trying here for a pre-compiled version before a deep dive

[users@httpd] mod_auth_cas for windows

2011-02-07 Thread K J.Sreekumar
Hello, Anyone has a compiled *mod_auth_cas.so/dll* for windows 32/64 ? It would be great if you could share this with us ? Thanks and Regards Sree

Re: [users@httpd] mod_proxy_http and input filters

2010-11-17 Thread Lawrence S K Ong
e per-server config structures */ NULL,/* command apr_table_t */ register_hooks /* register hooks */ }; Let me know if you require further information and thanks for the reply. Lawrence 2010/11/17 Igor Galić > > - "Lawrence S K Ong" wrote: > > >

[users@httpd] mod_proxy_http and input filters

2010-11-11 Thread Lawrence S K Ong
Can someone please help me with this issue? I have recently created an input filter. This input filter was created to modify the POST uri on the condition that the body matches a certain string. After the uri is modified, mod_proxy_http would send the correct POST uri to the backend server. Yes

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-16 Thread b k
thanks for ur input. But, as I said before, the reports work directly on the app server. However, the report fails to open if you provide a smaller date range (period) and works fine with a bigger date range. Is there any setting on web server that I need to check for min/max response data size or

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-16 Thread b k
, 2009 at 3:43 PM, Brian Mearns wrote: > On Tue, Nov 3, 2009 at 3:06 PM, b k wrote: > > Thanks!! Actually, it's a java based app on the WebSphere app server that > > sends the response to Apache web server which in turn sends the response > to > > the browser. I teste

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-03 Thread b k
also checked mime.types file which includes pdf entry. On Tue, Nov 3, 2009 at 2:32 PM, Brian Mearns wrote: > On Tue, Nov 3, 2009 at 2:26 PM, Marcin 'Rambo' Roguski > wrote: > > On Tue, 3 Nov 2009 14:20:27 -0500 > > b k wrote: > > > >> Hi all, > &g

[us...@httpd] pdf report generation - content type text/html

2009-11-03 Thread b k
Hi all, PDF reports are not being generated on any browser. On IE, I get the File Save dialog and on Firefox, all weird characters get displayed. When I ran this test again with HTTPFox and Fiddler, I noticed that the content-type in the response header is *text/html* for this PDF report, which is

Re: [us...@httpd] mod security turned on, but having some issues

2009-11-02 Thread b k
: > b k wrote: > >> Hi all, >> The web application which I am currently supporting incorporates reports >> generating functionality using Java Reporting Component which worked fine >> on >> WebSphere App server and also Apache 2.2 before turning on the mod >&g

[us...@httpd] mod security turned on, but having some issues

2009-11-02 Thread b k
Hi all, The web application which I am currently supporting incorporates reports generating functionality using Java Reporting Component which worked fine on WebSphere App server and also Apache 2.2 before turning on the mod security configuration. The app used to generate reports in a PDF format o

Re: [us...@httpd] Apache2 add module help !

2009-10-28 Thread Morten K. Poulsen
plain how to do this. Morten -- Morten K. Poulsen CTO, FableTech http://fabletech.com/ - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more in

[us...@httpd] Apache Scoreboard Viewer v0.9.2

2009-10-25 Thread Morten K. Poulsen
f the scoreboard, much like mod_status' server-status page -- but without making HTTP requests. Therefore it also works when the web server is overloaded. The source is available for download here: http://fabletech.com/ftasv Happy Hacking, Morten -- Morten K. Poulsen CTO, FableTech http://fab

[us...@httpd] Apache and domain names

2009-08-19 Thread Matt K
Can someone tell me how about hosting more then one Domain with Apache? Thanks Matt - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsub

Re: [us...@httpd] apache monitoring

2009-07-08 Thread Morten K. Poulsen
not responding. Morten -- Morten K. Poulsen CTO, FableTech http://fabletech.com/ - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To

RE: [us...@httpd] apache monitoring

2009-07-08 Thread Morten K. Poulsen
http://fabletech.com/ftasv Morten -- Morten K. Poulsen CTO, FableTech http://fabletech.com/ - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more

Re: [us...@httpd] rewrite and proxy question

2009-07-01 Thread K. Clair
n use ProxyPreserveHost On in the server config or vhost block). > > On Tue, Jun 30, 2009 at 11:41 PM, K. Clair wrote: > >> Hi All, >> >> I'm trying to figure out if the following is possible. Let me know if >> anyone has any ideas! >> >> I have a w

[us...@httpd] rewrite and proxy question

2009-06-30 Thread K. Clair
t to On in the main server config is not carrying over to the .htaccess file. So when the rewrite goes in the .htaccess file, requests to / get properly proxied, but the proxy server cannot answer correctly because the requested hostname is lost. Thoughts?? and

Re: [us...@httpd] Apache2 startup error on Solaris 10

2009-06-25 Thread Fred K
On Tue, Jun 16, 2009 at 2:46 AM, Igor Cicimov wrote: > Hi all, > > I have compiled and installed apache2.2.11 with mod_security and SSL on > Solaris 10. All was fine until I moved it to jail I had built in /chroot. > The error I get is: > > [Tue Jun 16 16:19:47 2009] [info] Init: Seeding PRNG with

Re: [us...@httpd] How can I secure my apache server from DoS attack ?

2009-06-25 Thread Fred K
On Tue, Jun 23, 2009 at 8:30 AM, Damian Myerscough wrote: > Hello Neelesh, > > It is possible to use a modules called: mod_evasive this will help > prevent DOS attacks occurring. > > http://www.zdziarski.com/projects/mod_evasive/ > Hi, mod_evasive will not work for this... on another thread by N

Re: [us...@httpd] Little explanation

2009-05-05 Thread Morten K. Poulsen
There is a good soul that can explain each directive listed above? Yes. http://www.lmgtfy.com/?q=StartServers&l=1 Best regards, Morten -- Morten K. Poulsen CTO, FableTech http://fabletech.com/ - The official User-To-Use

Re: [us...@httpd] Explosion of httpd clients

2009-04-06 Thread Morten K. Poulsen
Hi Russell, On Sun, 2009-04-05 at 15:21 -0600, Russell Bell wrote: > Morten K. Poulsen wrote: 'What are those httpd processes serving?' > > Do you mean the pages as recorded in the web logs? I was thinking about which requests those processes are handling right now. AFIK

Re: [us...@httpd] Explosion of clients

2009-04-02 Thread Morten K. Poulsen
r-status page (if you have mod_status enabled): lynx http://127.0.0.1/server-status If Apache is not responding, I've written a tool which might help you find out what is going on: http://fabletech.com/ftasv This tool can easily be run from cron to log activity at regular intervals. Best rega

[us...@httpd] Apache Scoreboard Viewer

2009-03-23 Thread Morten K. Poulsen
pache scoreboard, and prints the content. This might be useful to others as well, so I have made the source code available here: http://fabletech.com/ftasv Happy hacking, Morten -- Morten K. Poulsen CTO, FableTech http://fabletec

[us...@httpd] about 104 error

2009-01-18 Thread ���KK
hello every one, this is grant. when i use apache http server (2.0.47),i have encounted a strange error.it doesn't dissapear often. who can help me ? err_log: (104)Connection reset by peer:proxy:request failed to IP(70007)the timeout specified has expired:proxy:request failed to IP

RE: Apache 2.2.10 - Solaris 10 - Under Load - Failed to acquire SSL session cache lock

2008-12-13 Thread Ong, Lawrence K
ith Apache processes having to respawn itself continually. With Apache processes that respawns non stop and too quickly, the load will spike and the machine grinds to a halt... -Original Message- From: Ong, Lawrence K [mailto:lawrence.k@team.telstra.com] Sent: Friday, 12 December 2008 1

RE: Apache 2.2.10 - Solaris 10 - Under Load - Failed to acquire SSL session cache lock

2008-12-11 Thread Ong, Lawrence K
11, 2008 at 6:17 PM, Ong, Lawrence K wrote: > Hi All, > > We are currently getting a lot of warnings in our logs in regards to > deadlock, and I am wondering if anyone have experienced seen the following. > > Under load, we would get: > > [Fri Dec 12 08:50:23 2008] [warn

Apache 2.2.10 - Solaris 10 - Under Load - Failed to acquire SSL session cache lock

2008-12-11 Thread Ong, Lawrence K
Hi All, We are currently getting a lot of warnings in our logs in regards to deadlock, and I am wondering if anyone have experienced seen the following. Under load, we would get: [Fri Dec 12 08:50:23 2008] [warn] (45)Deadlock situation detected/avoided: Failed to acquire SSL session cache lock

Re: [us...@httpd] apache 2.2.3 - rhel 5.2 - mod_jk issue

2008-11-06 Thread Fred K
Hi, look at a file workers.properties and check the syntax with http://tomcat.apache.org/connectors-doc/reference/workers.html also look at examples in http://tomcat.apache.org/connectors-doc/generic_howto/loadbalancers.html balanced_worker is deprecated for balance_worker worker.balance1.balanc

Re: [EMAIL PROTECTED] Apache 1.3.37 64bit

2008-11-02 Thread Douglas K. Fischer
For posterity sake (and easy archive searching for the solution), here's all that's needed to patch mod_ssl: diff -PurN mod_ssl-2.8.31-1.3.41.orig/pkg.sslmod/libssl.module mod_ssl-2.8.31-1.3.41/pkg.sslmod/libssl.module --- mod_ssl-2.8.31-1.3.41.orig/pkg.sslmod/libssl.module 2006-05-08 03:15:37.000

[EMAIL PROTECTED] Modify HTTP response code

2008-10-15 Thread anand k
Hi, I'm trying to modify the HTTP status code of the response. One solution to do this is via "as-is". I was wondering if this could be achieved directly via an apache directive so that apache would not need to read the file. Is there a way to modify the HTTP status code via mod_headers? -- Vie

Re: [EMAIL PROTECTED] apache cache or other issues?

2008-07-12 Thread j k
On Sat, Jul 12, 2008 at 4:06 PM, tom lee <[EMAIL PROTECTED]> wrote: > Hello, > > I used apache with php and drupal. > > I got the following error in my web browser. > > warning: file_get_contents(http://abc.mywebsite.com/?prt=test) > [function.file-get-contents]: failed to open stream: Connection

Re: [EMAIL PROTECTED] trouble with vhosts and 2.2.8

2008-07-02 Thread j k
On Wed, Jul 2, 2008 at 8:14 PM, Eben <[EMAIL PROTECTED]> wrote: > I just setup a new Fedora Core 9 box, running apache 2.2.8. > > I then setup a basic virtual host config using NameVirtualHost *:80 > > My only virtual host looks like: > > > ServerAdmin [EMAIL PROTECTED] > DocumentRoot /home/d

RE: [EMAIL PROTECTED] Re: RPC/HTTP on FC8

2008-06-16 Thread Lokesh K B Reddy
Hi, Apache won't RPC over HTTPS. http://www.techlists.org/archives/web/apache-users/2006-07/msg00270.shtml https://issues.apache.org/bugzilla/show_bug.cgi?id=40029 From: Devon Harding [mailto:[EMAIL PROTECTED] Sent: Mon 6/16/2008 3:33 PM To: users@httpd.a

[EMAIL PROTECTED] How to apache not wait for completion of background job

2008-06-05 Thread JAIN, ABHAY K, ATTSI
I have a shell cgi script. It invokes another shell script via rsh in background (rsh -n &) on another machine. Idea is to start something which takes long and quit. It seems that Apache 2.2.8 waits before returning output message to browser till the background job is finished on remote machine. A

[EMAIL PROTECTED] Apache crashes at exit when mod_ldap is enabled. Please help

2008-06-05 Thread Rs K
Hello All,   I am lookng for some help. I use apache well and I am currently enabled mod_ldap.exe I observed that at apache shutdown, it is crashing. I figured out that that the address of cache->nodes of the parents process is changed at the time of exit. I think it is changed by the child proces

Re: [EMAIL PROTECTED] The simplest of questions ...

2008-04-22 Thread j k
On Tue, Apr 22, 2008 at 7:19 PM, Tall Paul <[EMAIL PROTECTED]> wrote: > Well thanks to all the great suggestions I got past the first hurdle. I > changed the listening port to 8080 and now my webpage can be accessed via > the net. Now I would like to have the ability to allow people to upload and

[EMAIL PROTECTED] Log question

2008-04-21 Thread j k
I'm trying to track down the source of some mysql requests coming from apache. Output from our server is blocked by the firewall and I can see from the firewall logs that every couple of hours Apache is trying to connect to port 3306 (mysql) on a remote server. I have LogLevel set at warn and don'

Re: [EMAIL PROTECTED] mod_suPHP: set php_admin options

2008-04-15 Thread j k
On Tue, Apr 15, 2008 at 10:41 AM, Florian Lindner <[EMAIL PROTECTED]> wrote: > Hello, > > I'm using mod_suphp. When using just mod_php I can set options in the > virtual host config like that: php_admin_value sendmail_path > > How can this be done when using mod_suphp? > > Thanks, > > Florian > >

Re: [EMAIL PROTECTED] ?Caching? problems?

2008-04-12 Thread j k
On Sat, Apr 12, 2008 at 3:33 PM, Jonathan Hayward http://JonathansCorner.com< [EMAIL PROTECTED]> wrote: > I am trying to move my main sites from a host which is closing to a new > server. Most of the migration has gone well but I am experiencing odd > ?caching? behavior that has old data being ser

Re: [EMAIL PROTECTED] Re: Running webserver as apache?

2008-04-11 Thread j k
On Fri, Apr 11, 2008 at 7:27 AM, <[EMAIL PROTECTED]> wrote: > Hi Mandy, > > > I need to know if its a good idea to run webserver as > > user 'apache', have all files in webroot owned by user > > apache and perms 644? > > It's not exactly a good idea, but if you are in a situation > where the adva

[EMAIL PROTECTED] Re: configure logs to track source of outgoing requests

2008-04-11 Thread j k
On Thu, Apr 10, 2008 at 9:32 PM, j k <[EMAIL PROTECTED]> wrote: > I am seeing some odd log entries like this: > Apr 10 05:14:09 OutDropped:IN= OUT=eth0 SRC=xx.xx.xx.xx > DST=66.249.31.43LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=47089 DF PROTO=TCP > SPT=37356 DPT=3306 > WINDOW=584

[EMAIL PROTECTED] configure logs to track source of outgoing requests

2008-04-10 Thread j k
I am seeing some odd log entries like this: Apr 10 05:14:09 OutDropped:IN= OUT=eth0 SRC=xx.xx.xx.xx DST=66.249.31.43LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=47089 DF PROTO=TCP SPT=37356 DPT=3306 WINDOW=5840 RES=0x00 SYN URGP=0 where xx.xx.xx.xx is the ip of our server, and 66.249.31.43 does not resolve

Re: [EMAIL PROTECTED] basic authentication: AuthUserFile directive not recognized apache2.2

2008-04-08 Thread j k
On Tue, Apr 8, 2008 at 11:45 AM, Eric Covener <[EMAIL PROTECTED]> wrote: > On Tue, Apr 8, 2008 at 2:27 PM, j k <[EMAIL PROTECTED]> wrote: > > Recently upgraded from 2.0.59 to 2.2.8 > > > * Apache2 has detected a syntax error in your configuration files: >

[EMAIL PROTECTED] basic authentication: AuthUserFile directive not recognized apache2.2

2008-04-08 Thread j k
Recently upgraded from 2.0.59 to 2.2.8 and awstats no longer works. Digging deeper found that my awstats.conf was out of date and had not been included in httpd.conf. After including awstats.conf in httpd.conf discovered that mod_auth.c has been replaced by mod_authn.c which is now part of the bas

Re: [EMAIL PROTECTED] log files

2008-04-02 Thread j k
On Wed, Apr 2, 2008 at 3:26 PM, Marc Fromm <[EMAIL PROTECTED]> wrote: > My system is Linux Fedora Core 5 running httpd-2.2.0-5.1.2 > How can I configure the log files sizes? > > Thanks > > Marc > > > - > The official User-To-User

  1   2   3   >