[users@httpd] ScriptAlias question

2011-07-01 Thread Michele Marcionelli
Greetings Users I'm trying to configure git (1) with the git-http-backend using the information in the man page (2). The main point is to set following ScriptAlias: ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/ Doing so everything works perfectly and I can access the git

[users@httpd] still hacking proxy-attempts accepted by webserver

2011-07-01 Thread Rob De Langhe
hi, despite me disabling the proxy* modules from my Apache, I see still occasionally some succesfull hack attempts via my server (code 200) : 125.46.73.7 - - [30/Jun/2011:11:54:09 +0200] GET http://www.baidu.com/ HTTP/1.1 200 240 - Mozilla/4.0 (compatible; MSIE 4.01; Windows NT) The loaded

Re: [users@httpd] Modifying headers according to response code

2011-07-01 Thread Tom Evans
On Thu, Jun 30, 2011 at 5:58 PM, Michael Stevens michael.stev...@planetoutinc.com wrote: What is generating the different responses? We use the Spring Security authentication framework on Tomcat using an APR connector behind Apache. Protected resources are handled like this for an

Re: [users@httpd] still hacking proxy-attempts accepted by webserver

2011-07-01 Thread Eric Covener
On Fri, Jul 1, 2011 at 3:54 AM, Rob De Langhe rob.de.lan...@twistfare.be wrote: hi, despite me disabling the proxy* modules from my Apache, I see still occasionally some succesfull hack attempts via my server (code 200) : 125.46.73.7 - - [30/Jun/2011:11:54:09 +0200] GET http://www.baidu.com/

[users@httpd] two name-based virtual hosts does not work

2011-07-01 Thread Markus Feldmann
Hi All, i have a name resolving problem of my virtual Host, I still posted my Problem at the mailing List news:gmane.network.dns.bind.user, called Problem with name resolving, but i am not sure whether this is a problem with my DNS Server our a misconfigured APACHE2.2.16 I have a Debian

[users@httpd] Re: two name-based virtual hosts does not work

2011-07-01 Thread Markus Feldmann
I forgot to wrote that i can acces http://feldland.dyndns.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail:

Re: [users@httpd] Re: two name-based virtual hosts does not work

2011-07-01 Thread Igor Cicimov
How did you set the sub domain test.feldland.dyndns.org to go to your server? Looks definitely like DNS issue nothing to do with apache. Very easy to confirm: $ nslookup feldland.dyndns.org Server: 192.168.1.200 Address:192.168.1.200#53 Non-authoritative answer: Name:

[users@httpd] require group using authn_dbd and digest

2011-07-01 Thread Robert Wagner
Hi, i would like to authenticate users using MySQL. So far my working configuration look like this: DBDriver mysql DBDParams host=127.0.0.1 port=3306 dbname=apache_auth user=username pass=password DBDPersist off Directory /var/www/sqlauth AuthDBDUserRealmQuery SELECT passwd FROM

[users@httpd] Re: two name-based virtual hosts does not work

2011-07-01 Thread Markus Feldmann
Am 01.07.2011 15:40, schrieb Igor Cicimov: How did you set the sub domain test.feldland.dyndns.org http://test.feldland.dyndns.org/ to go to your server? Looks definitely like DNS issue nothing to do with apache. Very easy to confirm: Hi, I thought Apache will do this for me? Or i could setup

Re: [users@httpd] Re: two name-based virtual hosts does not work

2011-07-01 Thread Francois Gingras
On Fri, Jul 1, 2011 at 10:36 AM, Markus Feldmann feldmann_mar...@gmx.de wrote: Am 01.07.2011 15:40, schrieb Igor Cicimov: How did you set the sub domain test.feldland.dyndns.org http://test.feldland.dyndns.org/ to go to your server? Looks definitely like DNS issue nothing to do with apache.

[users@httpd] Problem with disabling directory listing

2011-07-01 Thread Smith, Cathy
Hi I'm having a problem disabling directory listing for my DocumentRoot. I've taken out the Indexes parameter for Options, and I'm still able to list the directory. Here is the section from the httpd.conf. I'd appreciate it if someone could tell me what I need to do differently. This is a

Re: [users@httpd] Problem with disabling directory listing

2011-07-01 Thread Voellinger, Sandy
Try doing the following: Directory /var/www/ Options -Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all /Directory Change /var/www/ to the doc root of your apache server . Cheers- Sandy On Jul 1, 2011, at 1:27 PM, Smith, Cathy wrote: Hi I'm having

Re: [users@httpd] Problem with disabling directory listing

2011-07-01 Thread Eric Covener
On Fri, Jul 1, 2011 at 1:50 PM, Voellinger, Sandy sandy.voellin...@neustar.biz wrote: Directory /var/www/    Options -Indexes FollowSymLinks Not a good idea to mix +/- and non +/-. - The official User-To-User support forum of