Re: [EMAIL PROTECTED] http://194.16.84.195 is running on my own Apache 2.2 on my own machine...

2006-09-26 Thread Victor Trac
Try everydns.net.. it's free and pretty good. -Victor On 9/23/06, Dan Ostberg [EMAIL PROTECTED] wrote: Next project is to link a .com domain to the static IP 194.16.84.195 (which is mine). Do I have to go to an ISP to get hold of a DNS or can I set up my own DNS?

RE: [EMAIL PROTECTED] mod_jk help

2006-09-26 Thread Foster, Stephen \(ASPIRE\)
Hi there, How about this: http://tomcat.apache.org/connectors-doc/howto/apache.html This details mod_jk which is used to send requests for tomcat based on the request type. I have used this before and it works a treat. HTH Steve -Original Message- From: long [mailto:[EMAIL

Re: [EMAIL PROTECTED] ldap to ldaps under httpd-2.2

2006-09-26 Thread Ricardo Stella
Stuart Kendrick wrote: hi, i'm trying to upgrade my ldap authentication to ldaps i have both ldap and ldaps authentication working under apache 2.0 ... but under apache 2.2, i only have plain ldap working i'm looking for tips on additional trouble-shooting methods i could try [...]

[EMAIL PROTECTED] proxy and rewrite question - need help!

2006-09-26 Thread Jeff DeFord
All: I have some questions regarding the best approach to implementing Apache as a reverse proxy using mod_rewrite in order to mask the real URLs. Users will connect to the proxy, then the proxy will connect to the real server that is listening on port 8050 (SSL) So far this is what I have

[EMAIL PROTECTED] mod_rewrite %{REQUEST_URI} Question

2006-09-26 Thread Rob Wilkerson
I have an application in which nearly all requests are routed through a handler page which then renders the requested page. For example, a request for http://www.mydomain.com/bin/resumes/myresume.doc would be routed through http://www.mydomain.com/landingpage.php. I have a RewriteRule that

Re: [EMAIL PROTECTED] mod_rewrite %{REQUEST_URI} Question

2006-09-26 Thread Bob Ionescu
Rob Wilkerson wrote: RewriteRule ^/(.*) /landingpage.php?requesturi=%{REQUEST_URI}[QSA,PT] This works fine except when I have a document (these documents are uploaded by users so I have little control over them) called My Resume Cover Letter.doc, for example. The , having special meaning

Re: [EMAIL PROTECTED] Keywords and apache

2006-09-26 Thread Qingshan Xie
Joshua, Sorry for late question. I thought mod_dir will append this trailing-slash but seems Apache core can also do it. what is the relation of mod_dir and Apache core for this trailing-slash redirect handling? Thx, Q.Xie --- Joshua Slive [EMAIL PROTECTED] wrote: .. This is called a

[EMAIL PROTECTED] Port?

2006-09-26 Thread Brian O'Gorman
I'm getting the following errors. I'm also rather new at this, so any help would be appreciated. Thanks. Installing the Apache2.2 service The Apache2.2 service is successfully installed. Testing httpd.conf Errors reported here must be corrected before the service can be started. (OS

[EMAIL PROTECTED] malformed header from script from include files about META tags

2006-09-26 Thread S.A. Birl
Hello all: I searched the archives and could not find an answer: I just upgraded from 2.0.51 to 2.2.3 today and was testing to see if anything might have changed. And it did: I have a file called .header.shtml In said file: titleTitle/title meta name=robots

Re: [EMAIL PROTECTED] Keywords and apache

2006-09-26 Thread Joshua Slive
On 9/26/06, Qingshan Xie [EMAIL PROTECTED] wrote: Joshua, Sorry for late question. I thought mod_dir will append this trailing-slash but seems Apache core can also do it. what is the relation of mod_dir and Apache core for this trailing-slash redirect handling? As far as I know, apache does

Re: [EMAIL PROTECTED] malformed header from script from include files about META tags

2006-09-26 Thread Joshua Slive
On 9/26/06, S.A. Birl [EMAIL PROTECTED] wrote: Hello all: I searched the archives and could not find an answer: I just upgraded from 2.0.51 to 2.2.3 today and was testing to see if anything might have changed. And it did: I have a file called .header.shtml In said file:

[EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Serge Dubrouski
Hello Everyone - I have an Apache 2.2.3 server installed with mod_proxy and mod_ssl configured that I use as a frontend server in Internet. I also have iPlanet backend legasy server that runs on of our custom applications. That application has embedded authentication based on clients SSL

[EMAIL PROTECTED] Got Segmentation fault after load mod_ldap and mod_auth_ldap

2006-09-26 Thread Qingshan Xie
Hi! All, We have Apache-2.0.54 compiled with worker mpm. After load mod_ldap and mod_auth_ldap as below in httpd.conf, LoadModule ldap_module modules/mod_ldap.so LoadModule auth_ldap_module modules/mod_auth_ldap.so LDAPSharedCacheSize 0 LDAPCacheEntries 1024 LDAPCacheTTL 600

Re: [EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Andrew E. White
By nature, certs require a private key to verify them, so if a user is passing through your web server, the client's certificate will do you no good beyond the webserver since the webserver does not have the client's private key. Andrew - Original Message - From: Serge Dubrouski

Re: [EMAIL PROTECTED] malformed header from script from include files about META tags

2006-09-26 Thread S.A. Birl
On Sep 26, 2006, Joshua Slive ([EMAIL PROTECTED]) typed: Joshua: On 9/26/06, S.A. Birl [EMAIL PROTECTED] Joshua: wrote: Joshua:Hello all: Joshua: Joshua:I searched the archives and could not find an answer: Joshua: Joshua:I just upgraded from 2.0.51 to 2.2.3 today and was

Re: [EMAIL PROTECTED] ldap to ldaps under httpd-2.2

2006-09-26 Thread Stuart Kendrick
hi ricardo, ok, what you're pointing out is that i've been fuzzing whether or not i want to negotiate SSL after establishing a connection or if i just want to walk in assuming SSL my LDAP server is an Active Directory box with stunnel running on port 12389 (and redirecting what it receives

Re: [EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Serge Dubrouski
You aren't quite right. Your statement is right for crypting part but not for authenticating part. IE client's key is needed fo decrypting information but client crtificate is also needed for authenticating client. For example mod_jk that is used for connecting Apache to Tomcat has following

Re: [EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Serge Dubrouski
Plus of course SSLOptions +ExportCertsData that exports client certificate data into env. The question is how to make mod_proxy to send it down to backend server. On 9/26/06, Serge Dubrouski [EMAIL PROTECTED] wrote: You aren't quite right. Your statement is right for crypting part but not for

Re: [EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Andrew E. White
The certs have to be pulled from somewhere, and by default, at the start of a SSL connection. Part of the SSL connection setup is the challenge phase in which the presenter must have the private key. Remember that a cert is a public piece of information. That is why it can be seen by others in

[EMAIL PROTECTED] Two Nics, several ips aliased to each one

2006-09-26 Thread jekillen
Hello Apache list; I have a server running FreeBSD 6.0 RELEASE with Apache 1.3.34. I have two network interface cards. I have Three static public IP's assigned to one interface card and three internal IP's assigned to the other interface. I want to do IP based hosting. I got as far as a warning

Re: [EMAIL PROTECTED] Proxy SSL and Client Certificates

2006-09-26 Thread Serge Dubrouski
Actually the certs are public information. They contain client's public key that is used for encrypting data that can be decrypted with private key only, which is never get sent to the server. But you are right that passing that certificate down to the back end HTTPs server impossible because