Re: [users@httpd] permissions problem on my webserver

2011-02-04 Thread Joost de Heer
On Fri, February 4, 2011 16:08, James Godrej wrote: > when I go to a browser then rather than seeing the index page what I see > is the > directory starts getting downloaded.(Now I see a permissions denied error) > "You don't have permission to access / on this server." > What should I do in this

Re: [users@httpd] One Apache for three diff. websites

2011-01-31 Thread Joost de Heer
On Tue, February 1, 2011 08:29, Tushar Chavan wrote: > > Hi Experts, > > We have three diff. web sites providing diff. content. > 1. www.krm.com > 2. https://epsrm.com/irj > 3. http://epess.com/irj > > We have one Apache server with one Public ip. Now from this Apache can we > direct requests to th

Re: [users@httpd] compression on hard disks

2011-01-31 Thread Joost de Heer
On Mon, January 31, 2011 12:57, Jeff Shearer wrote: > I have been using compression to minimize network traffic and am now > wondering if Apache can be configure to use compressed files stored on > disk. This question also drives a second question: if Apache can use > compressed files stored on ha

Re: [users@httpd] cleanest/fastest way of redirecting aliases to canonical server names

2011-01-29 Thread Joost de Heer
2) - two vhosts, the first having only the canonical name as ServerName (no ServerAlias) 3) Two vhosts, the first having a bogus servername (e.g. 'redirecthost'), in which you do the redirection, and the second, which has the canonical name. If you use NVH and none of the hosts match, the f

Re: [users@httpd] Re: Core dump happens with Apache 2.2.15 using openssl 0.9.8n

2011-01-22 Thread Joost de Heer
On 22-1-2011 7:01, matty roland wrote: Hello, New Bug ID 50628 for this problem raised in issues.apache.org/bugzilla for this issue of Apache 2.2.15 core dump. Expecting urgent response on this. If you don't have a commercial contract with Apache, I doubt you

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Joost de Heer
On 01/20/2011 09:00 PM, --[ UxBoD ]-- wrote: Hello all, Now the issue comes when I am trying to redirect a domain URL in the following formats: http://somedomain.com http://somedomain.co.uk http://www.somedomain.co.uk and wish them all to be re-written as: http://www.somedomain.com I have

Re: [users@httpd] SSL library error 1 in handshake

2011-01-18 Thread Joost de Heer
On Tue, January 18, 2011 16:16, g f wrote: > Hello all, > I have a debian os running Apache 2.2.16(debian) along with tomcat 6.0.29. > I > use mod_jk as well as mod_auth_kerb module for apache. Apache and the > modules are debian repository packages. > > I recently attempted to activate common acce

Re: [users@httpd] webservice clustering trouble

2011-01-15 Thread Joost de Heer
On 01/16/2011 12:19 AM, Jeroen Geilman wrote: On 1/14/11 5:29 PM, Lukas Sklenar wrote: Hello, I have deployed 3 tomcat6.0.29 webapps, each of which exposes a webservice, and am using apache2.2 and mod_jk-1.2.31-httpd-2.2.3.so to cluster them - a performance exercise. 2.2.3 is quite old. 2.2

Re: [users@httpd] FreeBSD IPv6 only jail with Apache

2011-01-15 Thread Joost de Heer
Don't know why an assertion fails, but: Listen [2001:980:1312:6::1]:80 I recall having seen a bug with listen and IPv6 addresses in []. Can you use 'Listen 80' to listen on all IPv6 interfaces? ServerName six.ipv6.deze.org:80 Don't use a port in ServerName Can you use a precom

Re: [users@httpd] Help with config

2011-01-14 Thread Joost de Heer
> I have changed it to: > > DocumentRoot "C:/Users/User/My Documents/htdocs" Windows 7 has pretty strict ACLs on the c:\users directory. Check to see which account is used to run Apache httpd and check to see if this account has access to the directory c:\users\user\My Documents\htdocs. Another wa

Re: [users@httpd] How to properly block IP ranges server wide?

2011-01-13 Thread Joost de Heer
On 01/14/2011 02:40 AM, Norman Peelman wrote: Hello all, I've got a server with name based virtualhosts. I am getting spammers from various countries and would like to block these IP ranges. But I can't seem to figure out how to block them. How can I block them by default for the entire server?

Re: [users@httpd] simple newbie

2011-01-13 Thread Joost de Heer
On Thu, January 13, 2011 15:35, Jack Andrews wrote: > i tried adding: > > > Options +ExecCGI > AddHandler cgi-script .cgi > > > to /etc/apache2/apache2.conf [...] > [Fri Jan 14 01:32:54 2011] [error] [client 192.168.1.3] Options > ExecCGI is off in this directory: /var/www/index.cgi You pro

Re: [users@httpd] simple newbie

2011-01-13 Thread Joost de Heer
On Thu, January 13, 2011 13:28, Jack Andrews wrote: > hi guys, > > a total newbie question. > > i have created a cgi script 'index.cgi' in /var/www: > > root@duo:/var/www# ls -l > total 8 > -rwxr-xr-x 1 root root 69 2011-01-13 23:09 index.cgi > -rw-r--r-- 1 root root 177 2011-01-13 22:31 index.htm

Re: [us...@httpd] invalid response from Proxy dns lookup failure

2011-01-10 Thread Joost de Heer
When my proxy pass entries look as follows ProxyPass /app1 http://192.168.1.3:8080/app1 ProxyPass / http://192.168.1.3 ProxyPassReverse /app1 http://192.168.1.3:8080/app1 ProxyPassReverse / http://192.168.1.3 then some one from internet is able to access the sites.But from within LAN p

Re: [us...@httpd] invalid response from Proxy dns lookup failure

2011-01-10 Thread Joost de Heer
On 01/10/2011 08:17 AM, Tapas Mishra wrote: Ok here is a situation today morning I had rebooted the server and I observed and I see response for one of the application complaining http://myserver.com/app1 This is the error I see in browser Proxy Error The proxy server received an invalid resp

Re: [us...@httpd] SSL Termination at Apache

2011-01-09 Thread Joost de Heer
On 01/09/2011 08:58 PM, Tushar Chavan wrote: Hi , We have below scenario. Internet Users Server A<--https> Apache Server B<-http--->Server C We want https flow from internet users to Server A , from Server A to Apache server B again https .Then from Apache

Re: [us...@httpd] Regarding the redirect rules

2011-01-07 Thread Joost de Heer
On Fri, January 7, 2011 13:24, aparna aryan wrote: > Hello, > > Can any one please explain the meaning of this rule? > > RewriteEngine On > RewriteCond %{HTTP:FRONTEND-HTTPS} !on > RewriteRule ^/(wps/myportal/protected/.*) > https://internal.ericsson.com/$1[R,L] > If the HTTP-header 'FRONTEND-HTTP

Re: [us...@httpd] Setting and environment variable for one specific subdomain matching the ServerAlias

2011-01-05 Thread Joost de Heer
On 01/05/2011 08:57 PM, mattalexx wrote: I have a virtual host that includes the following settings ServerName www.host.com ServerAlias *.host.com Can I set SetEnv FOO "bar" for just a specific subdomain (like foo.host.com)? SetEnvIf Host foo.host.com foo=true Joost --

Re: [us...@httpd] Rewrite rules

2011-01-05 Thread Joost de Heer
>> As a side note, are there resources you would recommend to help me >> with this type of task? > [List of resources] There's also Rich Bowen's mod_rewrite book (http://www.amazon.com/exec/obidos/asin/1590595610/drbacchus/). Joost

Re: [users@httpd] wildcard domains do not work

2011-01-02 Thread Joost de Heer
> RewriteCond /home/$1 -d > RewriteRule ^/([^/]+)/(.*) /home/$1/public_html/$2 > > > > > > except I like to have a "RedirectMatch 301 ..." which I do not know how > it works, [R=301] beh

Re: [us...@httpd] Searchin better solution as mod_proxy/vhost

2010-12-29 Thread Joost de Heer
On 29-12-2010 20:00, Michelle Konzack wrote: Hello *, On my gateway I use a bunch of files (currently 1782) like 8<-- ServerName $HOST_NAME ProxyRequests off ProxyViaon ProxyPass /

Re: [us...@httpd] SSL Client Authentication Problem

2010-12-28 Thread Joost de Heer
> The browser is supposed to request which client > certificate the user wants to use, then I can select the one I created and > signed with ca.crt, which I have set as a trusted CA in the browser. Did you import the client certificate in the browser? Joost --

Re: [us...@httpd] A question about log rotation (/etc/logrotation.d and /etc/logrotation.d/httpd)

2010-12-28 Thread Joost de Heer
On Tue, December 28, 2010 13:55, Thomas Chang wrote: > Hello all, > > By default the log rotate every week and add the running number after the > log file. Now I want to change this so that all the log files under > /var/log/httpd rotate every day and end with date with format ddmm. > > I chang

Re: [us...@httpd] Restricting config to a single virtualhost

2010-12-28 Thread Joost de Heer
On Mon, December 27, 2010 13:25, Jeroen Geilman wrote: > That's such nonsense. > Package upgrades do not touch files that were modified manually. But they do recreate files if they're moved to a different location. And that was what OP was referring to (my suggestion to rename/move the gitweb.con

Re: [us...@httpd] Is Apache ports unstable or my CA Unicentre giving false alerts

2010-12-25 Thread Joost de Heer
On 12/25/2010 05:08 PM, sunhux G wrote: Question is how do I determine if it's my Apache that's not responding or it's the CA tool not being configured well or not fine-tuned? I'm sure our network has no issue. Do you see entries in the access log during the period your monitor tool reports a

Re: [us...@httpd] Restricting config to a single virtualhost

2010-12-24 Thread Joost de Heer
Move the file from conf.d to another location, and Include the file in your ssl host. Another solution: Add SSLRequireSSL to the gitweb.conf file. All vhosts will see the gitweb configuration, but only the SSL host will allow access. Joost

Re: [us...@httpd] Restricting config to a single virtualhost

2010-12-24 Thread Joost de Heer
Debian includes conf.d/* before sites-enabled/*, this means gitweb is loaded before default-ssl. Reverting this behavior is not a big deal, but how do I make gitweb available only to the SSL website? I know I could place gitweb content into default-ssl, but I'd rather keep them separated, if possi

Re: [us...@httpd] DocumentRoot isn't the root for an absolute reference.

2010-12-16 Thread Joost de Heer
# Below are all the real virtual host definitions. ServerAdmin x...@ycc.com DocumentRoot /var/www/html/roatanbakery.com ServerName roatanbakery.com ServerAlias www.roatanbakery.com When I use Firefox via http://localhost/roatanbakery.com/ , the page comes up broken with no

Re: [us...@httpd] Apache2 | mod_ssl

2010-12-16 Thread Joost de Heer
On Thu, December 16, 2010 14:19, King Holger (CI/AFP2) wrote: > Hi Apache2 community, > > when enabling SSL for Apache2 we get an error during startup telling us, > the private key could not be found: > [Tue Nov 23 20:04:53 2010] [error] Init: Private key not found > [Tue Nov 23 20:04:53 2010] [err

Re: [us...@httpd] Alias-ed directory appears on multiple virtual hosts

2010-12-07 Thread Joost de Heer
> Now what happens to my surprise is that /phppgadmin is accessible via > all my virtual hosts, not just the one (base host) where it is > defined. All your virtual hosts or all your SSL virtual hosts? > https://onesite.com/phppgadmin > https://twosite.com/phppgadmin SSL namebased virtualhosting

Re: [us...@httpd] Filters not applied with ErrorDocument pages?

2010-12-07 Thread Joost de Heer
On Mon, December 6, 2010 02:56, Dennis Jacobfeuerborn wrote: > I just noticed that when I use ErrorDocument to server custom 404 pages > the > output filter I defined is not getting used anymore. Is there some special > configuration required to make the filters also work on custom error > pages?

Re: [us...@httpd] httpd on Windows -- can access UNC paths from service but not mapped drives

2010-12-03 Thread Joost de Heer
On Fri, December 3, 2010 14:53, Jeff Trawick wrote: > e.g., this works: > > Alias /something //machinename/directory > > and this doesn't: > > Alias /else z:/foo Does the Z-drive exist in the context of the user running httpd? > I see this question raised a number of times, but I don't see any >

Re: [us...@httpd] ProxyPass and remote ip-addresses

2010-11-28 Thread Joost de Heer
On 11/28/2010 12:50 AM, Lars Nielsen wrote: Hi there, I have a setup with 2 servers where the first one works as a proxy to the second. On my proxy server i have this in apache's config: ServerName www.hjemmesideteknik.dk ServerAlias hjemmesideteknik.dk ProxyPreserve

Re: [us...@httpd] Apache php in ubuntu

2010-11-21 Thread Joost de Heer
On 11/21/2010 01:07 AM, Peter Maguire wrote: I am trying to get my apache server to work with php files. It shows the phpinfo() but just comes up blank on others, my server is on sometimes at http://94.192.200.195/ What does the error log say? Joost

RE: [us...@httpd] Apache Proxy Directives

2010-11-21 Thread Joost de Heer
On Sun, November 21, 2010 08:33, Sachin Bhugra wrote: > > Yes, sorry for the typo, i meant "Directives" > > By proxy.conf, I meant like we have httpd-vhost.conf and other files in > conf/extra folder, does it also create file like proxy.conf (maybe with > another name or add directives to some othe

Re: [us...@httpd] Rotating logs

2010-11-12 Thread Joost de Heer
On 11/12/2010 08:11 PM, Patrick McCambridge wrote: Hi Tony, the answers to your first questions are yes and yes. I am running Apache 2.2.16 Here is my full path to rotatelogs: V:\Apache22\bin Here is my full path to logs folder: V:\Apache22\logs TransferLog "| /Apache22/bin/rotatelogs -l -f /

Re: [us...@httpd] apache 2.2 mod rewrite/htaccess on windows 7

2010-11-11 Thread Joost de Heer
On 11/11/2010 05:48 PM, Sam Sherlock wrote: I have set up php, mysql and apache 2.2 but I can't seem to get mod_rewrites to work would greatly appreciate any ideas to resolve this RewriteLog and RewriteLogLevel are your friends. > RewriteEngine on > RewriteRule bob.html alice.html If this

Re: [us...@httpd] SSL redirect ?

2010-11-04 Thread Joost de Heer
On 11/04/2010 11:56 AM, Brent Clark wrote: Hiya I got an interesting request from a client and I was hoping to bounce this off you guys.

Re: [us...@httpd] Re: phpMyAdmin session could not be invoked

2010-10-30 Thread Joost de Heer
On Sat, October 30, 2010 09:43, Florian Effenberger wrote: > Hi, > > anyone has an idea? Are you running out of inodes in /tmp? Joost - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.

Re: [us...@httpd] Limiting Request Body suggestion

2010-10-28 Thread Joost de Heer
On Thu, October 28, 2010 16:24, Tom Evans wrote: > Why do you care what the status code is? (or rather, why do you want > to return OK when an error occurs?) To work around the "Display userfriendly error messages" bug^Wfeature? Joost

Re: [us...@httpd] Apache 2.2.17 on RHEL 5.2 (13) Permission denied

2010-10-27 Thread Joost de Heer
> I have checked log files error_log. It has logged (13) Permission denied. Does the user Apache runs as have access to the entire path to the documentroot? I.e. if the path is /usr/local/www, the user should have access to /usr, /usr/local and /usr/local/www. Joost -

Re: [us...@httpd] Re: possible to add multiple locations for the document root

2010-10-25 Thread Joost de Heer
On Mon, October 25, 2010 14:39, e-letter wrote: > On 21/10/2010, e-letter wrote: >> I tried to use the command 'Alias', to try and use the program >> phppgadmin which was extracted to /path/to/phppgadmin: There are some errors: >> Alias /localhost/target /usr/local/phppgadmin/phppgadmin Alias /

Re: [us...@httpd] Hardening Apache against attacks

2010-10-25 Thread Joost de Heer
On Sun, October 24, 2010 22:47, Jason Nunnelley wrote: > I've done a few things already: blocked certain IP blocks, block know > problematic user agents. I'm trying to collect a list of Apache and > site hardening (.htaccess) methods. Please share your favorite. Why .htaccess? Security tip #1 shou

Re: [us...@httpd] Host-header from requests are ignored?

2010-10-20 Thread Joost de Heer
Anyway, which host-header I specify - any valid ip-address pointing to this machine - strands in the same directory! What's the output of 'httpd -S'? Joost - The official User-To-User support forum of the Apache HTTP Server Pr

Re: [us...@httpd] Integration with apache 2.2.15 with glassfish

2010-10-19 Thread Joost de Heer
On Tue, October 19, 2010 11:57, Nasir Zia wrote: > Hi, > > Can I integrate apache with glassfish using mod_proxy_ajp same like > integration of apache with tomcat. According to http://docs.sun.com/app/docs/doc/821-1751/gfaad?l=en&a=view Glassfish can be connected with mod_jk, so it's safe to assum

Re: [us...@httpd] mod_rewrite is not working

2010-10-19 Thread Joost de Heer
On Tue, October 19, 2010 07:48, Tushar Chavan wrote: > RewriteRule ^/(sap\(.*) http://srmdev.kjo.com.sa:8000/sap($1 [P,L] You have a missing ( RewriteRule ^/sap\((.*) http://srmdev.kjo.com.sa:8000/sap($1 [P,L] Hint: RewriteLog and RewriteLogLevel Joost -

Re: [us...@httpd] HTTPS over mod_proxy

2010-10-18 Thread Joost de Heer
On 10/18/2010 11:03 AM, Hendrik Schmieder wrote: Hello, with http over a proxy (like Apache mod_proxy) I send something like GET http://192.168.2.234:/server/info HTTP/1.1 Content-Length: 0 Host: 192.168.2.234: Connection: Keep-Alive Accept-Encoding: identity, *;q=0 But I'm not sure

Re: [us...@httpd] Language dependent Redirect?

2010-10-17 Thread Joost de Heer
On 10/17/2010 09:07 AM, Hans Lodder wrote: Putting in .htaccess file a redirect like this does not work: Redirect permanent http:/results2match.nl/english-url http:/results2match.com/english-url This does not work either: Redirect permanent english-url http:/results2match.com/english-url

Re: [us...@httpd] Different PHP Version for a VirtualHost

2010-10-16 Thread Joost de Heer
Action php4-cgi /php4cgi/php AddType php4-cgi .php4 .php Action application/x-httpd-php4 /php4cgi/php AddType application/x-httpd-php4 .php4 .php Joost - The official User-To-User support forum of the Apache HTTP Ser

Re: [us...@httpd] search url with mod_proxy_html & replace it another

2010-10-16 Thread Joost de Heer
On 10/16/2010 09:15 AM, Tushar Chavan wrote: Hi Experts, But its not working "It's not working" isn't an error message. What doesn't work? What should it do? Is there anything in the error log? Joost - The official User-To-

Re: [us...@httpd] Read-only DocumentRoot

2010-10-14 Thread Joost de Heer
On Thu, October 14, 2010 10:09, PENIN Guillaume (SNCF Voyages/Direction des Operations SI) wrote: > Hi, > > Many of our application teams ask us to mount the Apache DocumentRoot > FileSystem in Read-only mode for security reasons. In your opinion, does > this have any kind of interest ? Mounting r

Re: [us...@httpd] Java Server socket behind apache

2010-10-11 Thread Joost de Heer
On Mon, October 11, 2010 14:46, bharath.krishna...@rsa.com wrote: > Hi, > > Is there a way to configure apache to route non-http plain socket (java > server socket - TCP ) communication ? I'd use rinetd (http://www.boutell.com/rinetd/) for proxying non-HTTP traffic. Joost ---

Re: [us...@httpd] Require user $var

2010-10-07 Thread Joost de Heer
>> Require file-owner > This isn't documented syntax; is it a 2.3 thing? Ne, it's a mod_authz_owner thing: http://httpd.apache.org/docs/2.2/mod/mod_authz_owner.html Joost - The official User-To-User support forum of the Apache

Re: [us...@httpd] Replacing TEXT on the Response Page

2010-10-06 Thread Joost de Heer
> Below is our scenario > > Browser ->Apache Server -->Web Dispatcher ->SAP J2EE Engine > -->SAP SRM Server.. > > Now when ever we execute https://apache_server_host:1443/irj , we get a > page. Now if I want to replace certain text on the page before displaying > to the user. ( e.g

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Joost de Heer
On 10/04/2010 03:55 PM, Eric Covener wrote: RewriteCond %{REQUEST_FILENAME}.gz -f in vhost context, you have to add the document root in yourself, since the request hasn't actually been mapped to a file yet. If I understand the docs correctly, this can also be fixed with %{LA-U:REQUEST_FILEN

Re: [us...@httpd] File does not exist: /appache/htdocs/webdynpro

2010-09-19 Thread Joost de Heer
On 09/19/2010 01:16 PM, Tushar Chavan wrote: Hi Expert, Below is our scenario. Browser >Apache --->SAP Web dispatcher ->SAP Portal. #TO preserve reverse proxy host ProxyPreserveHost On #proxy /irj both ways ProxyPass /irj https://SAP_WEB_Dispatcher_Host:1443/irj ProxyPassReverse /

Re: [us...@httpd] Apache proxy as client to ssl server

2010-09-16 Thread Joost de Heer
On Thu, September 16, 2010 15:32, Liegler, Jörg wrote: > On servers A und B, there is no client key authentication, so just simple > https. > > My questions: > > - What do I have to put in ???.pem for the SSLProxyMachineCertificateFile. > If - how do I have to use openssl to generate client keys?

Re: [us...@httpd] https and http server with the same documentRoot + force to use https for some content and authenticate!

2010-09-15 Thread Joost de Heer
On 09/15/2010 05:55 PM, sattlite Installer wrote: Thanks for the reply, then to confirm is there no way of doing this only in .htaccess files? I would prefer to do this as the web team edit these while I have to edit the server config? You need SSLRequireSSL (http://httpd.apache.org/docs/2.2/m

Re: [us...@httpd] Re: Problem with mode_expires module

2010-09-15 Thread Joost de Heer
On Wed, September 15, 2010 11:17, Vijay Shanker Dubey wrote: Please don't use HTML formatting in your mails, the yellow background is virtually unreadable on my screen. > That look like okay for me as with status code 304, there is no any > payload > in the http response, but again, what is the n

Re: [us...@httpd] Apache Tomcat Load Balancing with mod_proxy not working

2010-09-13 Thread Joost de Heer
> >    Allow From All >    ProxyPass balancer://tomcatservers/* stickysession=JSESSIONID > nofailover=off > Don't use the wildcards: Allow From All ProxyPass balancer://tomcatservers stickysession=JSESSIONID nofailover=off Or use the simpler ProxyPass / balancer://tomcatservers stic

Re: [us...@httpd] Upgrade 1.3.12 -> 2.2.16: Reverse Proxy issues [WAS: Jserv issue ???]

2010-09-13 Thread Joost de Heer
Does NOT work: DOES work: These are two different URL's. A \ isn't the same as a /. Joost - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more inf

Re: [us...@httpd] Apache mod-jk log rotate issue

2010-09-13 Thread Joost de Heer
On Mon, September 13, 2010 14:28, Garg, Saman wrote: > Thanks Jeff for your reply. > Is apache expected to not create new mod-jk log right on restart? Apache no longer creates the logfile, that's now left to rotatelogs. And rotatelogs only creates the file when there's data. Joost --

Re: [us...@httpd] How deploy gzip to htdocs

2010-09-09 Thread Joost de Heer
On 9-9-2010 4:18, srinivasan kumaran wrote: Hi, I have installed apache webserver in windows. I am new to Apache webserver. I gzipped ( .gz) all my static contents( js,html,css) and copied to htdocs folder and restarted the apache server. static contents are not getting displayed. But when i dire

Re: [us...@httpd] Upgrade 1.3.12 -> 2.2.16: Jserv issue ???

2010-09-08 Thread Joost de Heer
On Thu, September 9, 2010 01:45, Mike Schleif wrote: > Hi, All! > > You may have seen my posts last week about a legacy Oracle App (8.1) > running on Apache (1.3.12) under Windows. > > Trying to upgrade Apache, and we've run into a Jserv issue: > > Legacy lines from httpd.conf: > # Include the co

Re: [us...@httpd] domain/~user ?

2010-09-05 Thread Joost de Heer
On 09/05/2010 02:16 PM, lists.httpd-u...@duinheks.nl wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I'm running httpd apache 2.2.16 under SlackWare 13.0. I used to have a statement in my config so that a connection to www.duinheks.nl/~letan would connect to the home page of letan i

Re: [us...@httpd] 500 internal server error running php application

2010-09-03 Thread Joost de Heer
Error Log: /home/webdir/www/catalog/includes/.htaccess: order not allowed here, referer: http://www.mydomain.com/catalog/ [Fri Sep 03 11:34:34 2010] [alert] [client ip.add.re.ss] /home/webdir/www/catalog/zc_install/.htaccess: DirectoryIndex not allowed here, referer: http://www.mydomain.com/cata

Re: [us...@httpd] 500 internal server error running php application

2010-09-03 Thread Joost de Heer
Can anyone point me in the right direction or give me a hint as to how to troubleshoot? What does the errorlog say? Usually a 500 implies a failing script. Does the PHP script work when you run it from the commandline? Joost ---

Re: [us...@httpd] Intermittent crashing web server service

2010-09-02 Thread Joost de Heer
> C:\oracle\ora81\Apache\Apache\Apache.exe -v > Server version: Apache/1.3.12 (Win32) > Server built: Nov 8 2000 20:08:38 > > Service: OracleOraHome81HTTPServer Oracle uses Apache as a base, but does its own things with the server. The only people who can help you are Oracle tech, because the A

Re: [us...@httpd] Invalid command includes/log.std', perhaps mis-spelled or defined by a module not included in the server configuration

2010-08-24 Thread Joost de Heer
On Tue, August 24, 2010 09:55, Amol Puglia wrote: > Hello Joost, > > It is a file which is loading all the configuration files. Include files don't work that way. The included file itself should contain valid configuration options, not a list of files to be included. If you want to include multip

Re: [us...@httpd] Invalid command includes/log.std', perhaps mis-spelled or defined by a module not included in the server configuration

2010-08-24 Thread Joost de Heer
On Tue, August 24, 2010 09:29, Amol Puglia wrote: >  Hello Joost, > > Thanks for your response. > > I am loading the file in the same way as mentioned by you in the last > response. > > I am still receiving same error. > > Include includes/httpd2.std > > Syntax error on line 2 of > /opt/app/ccr/hom

Re: [us...@httpd] Invalid command includes/log.std', perhaps mis-spelled or defined by a module not included in the server configuration

2010-08-23 Thread Joost de Heer
On Tue, August 24, 2010 08:29, Amol Puglia wrote: > Hello Team, > > I have recently installed apache 2.0.63 on solaris 5.10. I have compiled > all the modules. > > Now, I am unable to start the apache server as receiving following error > on the prompt. > > Invalid command includes/log.std', perhap

Re: [us...@httpd] Re : [us...@httpd] Re : [us...@httpd] proxy_loadbalancer and failover

2010-08-20 Thread Joost de Heer
On 08/20/2010 02:05 PM, michael bienstein wrote: Thanks Rainer, I checked and clearly there is something listening on port 81 but I can't figure out what it is. When I switxh to port 82 it works as I'd expect. Use tcpview ( http://technet.microsoft.com/nl-nl/sysinternals/bb897437%28en-us%29.a

Re: [us...@httpd] apache mod_unique configuration issue - Name or service not known

2010-08-17 Thread Joost de Heer
[Tue Aug 17 09:41:47 2010] [alert] (EAI 2)Name or service not known: mod_unique_id: unable to find IPv4 address of "server-2.local.net" Configuration Failed [Tue Aug 17 09:47:10 2010] [alert] (EAI 2)Name or service not known: mod_unique_id: unable to find IPv4 address of "server-2.local.net" Confi

Re: [us...@httpd] Apache/Perl CGI intermittent missing POST data

2010-08-09 Thread Joost de Heer
On 08/09/2010 10:26 AM, Timothy Partee wrote: None of our rewrite rules should ever be operating on POST form processor scripts, however it was suggested to us that mod_rewrite is the likely culprit as it may be over-reactive and sometimes accidentally nuking our POST data when it shouldn't.

Re: [us...@httpd] Apache/Perl CGI intermittent missing POST data

2010-08-09 Thread Joost de Heer
It was suggested that we exclude the CGI folders from the mod_rewrite rules and processing, however we could find no info in Apache documentation on how to exclude mod_rewrite rules/operation from any specific directories. Any pointers in the right direction would be appreciated, thanks! Rewrite

Re: [us...@httpd] Apache2.2.16 LDAP authentication error

2010-08-08 Thread Joost de Heer
/usr/lib/libldap.so.5 further information.I used openldap-2.4.22-sol10-sparc-local package. The -local packages install in /usr/local, as far as I know. So a different LDAP library is loaded. Joost - The official User-To-

Re: [us...@httpd] Does not define the download of type ZIP of Apache HTTP s/w ,

2010-08-07 Thread Joost de Heer
On 08/07/2010 10:44 AM, Karthik Nanjangude wrote: Hi URL : http://apache.tradebit.com/pub/httpd/ Does not define the download of type ZIP of Apache HTTP s/w , In such case Can I Download “httpd-2.3.6.tar.gz“ and run the same on Windows 2000 ? Check the binaries/win32 subdirectory. Joost

Re: [us...@httpd] Problem setting up SSL Proxy

2010-08-06 Thread Joost de Heer
On 08/06/2010 09:16 PM, Florian Lindner wrote: Hello! I want to set up an local ssl proxy. I have an certificate for *.centershock.net and want domains like xgm.de to be accessible with SSL. You do realise that only the connection to the reverse proxy is encrypted? The connection from the pro

RE: [us...@httpd] strange behaviour: SSLCACertificatePath and SSLCACertificateFile not giving the same result?

2010-08-06 Thread Joost de Heer
On Fri, August 6, 2010 13:52, Luis Neves wrote: > > Im trying as suggested, But what should I look for? I see the SSLv3 > traffic between server and client. > > The server send all the CA certificates, the client send all his > certificates as well, then a BAD certificate error is returned by the >

Re: [us...@httpd] ProxyRemote fails silently

2010-08-05 Thread Joost de Heer
On Fri, August 6, 2010 06:44, Kate Yoak wrote: > I am attempting to do something extremely simple with mod_proxy and am > at a loss. > > ProxyRequests On > ProxyRemote http://dev.foo.com/ http://foo.com:42001 ProxyRemote is for chaining proxies. Is that really what you want? Joost -

Re: [us...@httpd] mod_ssl in Apache 2.2.15

2010-08-03 Thread Joost de Heer
On 08/02/2010 06:52 PM, jackie.w...@barclayscapital.com wrote: Hi, I have downloaded the source of apache 2.2.15 and compiled it with openssl. Then I downloaded mod_authz_ldap 0.29 from http://authzldap.othello.ch/ and compiled it with no issues. I did specify apr-1-config, apu-1-config, apxs an

Re: [us...@httpd] When and how does the parent pid get notified that it is time for the child to die because MaxRequestsPerChild has been reached?

2010-08-03 Thread Joost de Heer
On Tue, August 3, 2010 13:59, Matty Ronald wrote: > Hi, > > Parent httpd process isn't spawning a new replacement child in a timely > fashion, > after MaxRequestsPerChild has been hit and the child worker httpd has > exited with the below settings: > > Timeout 70 > KeepAlive On > KeepAliveTimeout 6

Re: [us...@httpd] Limit connections

2010-08-03 Thread Joost de Heer
On Mon, August 2, 2010 20:51, Per Qvindesland wrote: > Hello List > > I have been doing plenty of goggling and reading but I must have been > reading in all the wrong places because I can not find the > information, but how do I configure apache so it limits the amount of > connections from a host(

Re: [us...@httpd] Making sure a URL doesn't change when the site is hosted somewhere else

2010-08-02 Thread Joost de Heer
On 2-8-2010 18:05, Mike Soultanian wrote: Hi everyone, I'm not sure what this is called, but I work at CSULB and have a website hosted there. Problem is that we're using ColdFusion on-campus and they're phasing out support for that platform. So, I'm going to move the site off-campus, but I need

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-28 Thread Joost de Heer
On Wed, July 28, 2010 8:39 am, Buddy wu wrote: > hi,tanks joost > but It won't work for your correction of the configuration file. > removed the hash > and correct the name > but also can't work Did you check the error log and the windows event log? Did you start the service from the command line

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-27 Thread Joost de Heer
On Wed, July 28, 2010 4:01 am, Buddy wu wrote: > the file is the initial one which build at installation. here it is [snip] > #LoadModule ssl_module modules/mod_ssl.so [more snip] SSL module is commented out, so SSL won't work. Remove the hash. > NameVirtualHost *:8443 > Keep the arguments to

Re: [us...@httpd] problems with htacces and includes

2010-07-25 Thread Joost de Heer
On 07/25/2010 08:02 PM, Teun wrote: Hi, I have problems with htaccess and server side inludes. If I try a secure websitefolder with a .htaccess file and a .htpasswd file. There will not ask for a user/passwd to loging in. Do you have the proper AllowOverride set? Joost --

Re: [us...@httpd] Re: mod_webdav problem

2010-07-23 Thread Joost de Heer
< Server: Apache/2.2.8 (Ubuntu) DAV/2 mod_python/3.3.1 Python/2.5.2 The Server: HTTP header doesn't mention mod_webdav. It does: DAV/2 I don't think this is a bug. Why would DAV have to do anything if a file with 0 bytes should be replaced by a file with 0 bytes? Joost -

RE: [EMAIL PROTECTED] Apache as a Proxy

2007-04-24 Thread Joost de Heer
> If on a client I point to this machine, on port 80, and try to hit a URL, > I get this error > > Proxy Error > The proxy server could not handle the request GET http://www.cnn.com/. > > Reason: Host not found Is DNS working on your proxy machine? Joost

[EMAIL PROTECTED] Re: Proxying GET and POST requests

2007-04-23 Thread Joost de Heer
wi wrote: > Hi all > > We have a need (driven by some load/caching issues) to split our incoming > traffic so that GET requests go to one set of servers and POST requests go > to another part of the farm. Unfortunately, there's no simple URI based > way > of identifying which is which, so I'm wonde

[EMAIL PROTECTED] Re: SSL/Apache 2.0.x Question

2007-04-22 Thread Joost de Heer
Tom Ray [Lists] wrote: > I've created a self-signed SSL for a site and while it works great, I'm > getting that annoying "Not a Trusted Issuer" pop up. By looking over the > ssl.conf it looked like I could do something in that might stop that > error box from coming up. No you can't, since this is

Re: [EMAIL PROTECTED] CGI question

2007-04-14 Thread Joost de Heer
> I used wget. It is a little hard to capture with firefox because the > redirect gets followed before you have a chance to examine where you > are. And it can't be done manually (via telnet) because you are using > ssl. HTTPS manual testing can be done with: openssl s_client -connect server:port

[EMAIL PROTECTED] Re: Problem with revoked certificates.

2007-02-04 Thread Joost de Heer
domi wrote: [Question about CRLs] > > ServerName 192.168.0.2:443 > Errorlog /opt/exampleca/ssl_error_log > Transferlog /opt/exampleca/ssl_access_log > > SSLEngine on > > SSLCipherSuite HIGH:MEDIUM > > SSLProtocol all > > SSLCertificateFile /some/path/01.pem > SSLCertificateKeyFile /some/path/tes

[EMAIL PROTECTED] Re: Naming access logs

2006-10-09 Thread Joost de Heer
[EMAIL PROTECTED] wrote: > I know how to specify the name of the access log. However, I've been > unable to uncover how to specify a file name with a variable. For > example, > I'm using log rotate and would like to have the file name include the > date. > Does anyone know how to accomplish this?

[EMAIL PROTECTED] Re: rewrite proxy and query string

2006-10-05 Thread Joost de Heer
> Doesn't seem to work though by itself. For this to work though, the docs > say for the P flag > "Note: mod_proxy must be enabled in order to use this flag." [snip] > using either one of the above gets me a " proxy: No protocol handler was > valid for the URL" error. I assume you're using Apac

[EMAIL PROTECTED] Re: Corrupted source files

2006-09-25 Thread Joost de Heer
Victor Star wrote: > Hi, > > I'm new to Apache. I've just installed Apache 2.2.3 on FreeBSD 6.0. > Configured it and got it > running. But I'm having something that looks like quite a weird problem. > I've done my research on > Google, read FAQ and docs but couldn't find anything even closely > res

Re: [EMAIL PROTECTED] Apache and router

2006-09-05 Thread Joost de Heer
John Tunstall wrote: > Thanks again Steve. > Yes this is where our CGI scripts are stored. But, do you have some ideas > on the CGI script we can use to instruct Apache on the IP address to be > used, namely not to use the Router IP but to use the static IP address of > the server? What's the valu

RE: [EMAIL PROTECTED] SSL with Apache and IE

2006-08-17 Thread Joost de Heer
>> The page cannot be displayed >> >> Cannot find server or DNS Error > > There's your problem. Obviously you've never worked with IE. That's the standard error whenever something doesn't work (The oh so beloved 'friendly error' from IE). Joost --

[EMAIL PROTECTED] Re: Can't bind to port on boot

2006-07-28 Thread Joost de Heer
> Cannot assign requested address: make_sock: could not bind > to address 208.97.158.169:1443 > no listening sockets available, shutting down > Unable to open logs Is the network up before you start Apache? If your machine doesn't have this IP address yet, it'll fail. May I as

[EMAIL PROTECTED] Re: Apache 1.3, 4GB file limit

2006-07-23 Thread Joost de Heer
Morgan Gangwere schreef: I have to agree that moving forward to apache2 is a good idea. but what kind of files would be over 4 Gigs? DVD ISO's. - The official User-To-User support forum of the Apache HTTP Server Project. See h

  1   2   3   >