[EMAIL PROTECTED] Redirecting urls to a server on a different port

2006-03-05 Thread Bart Braem
Hello, Is it possible to redirect requests on a certain url to a local server on a different port? Something like www.somewhere.com/something to localhost:8080 and www.somewhere.com/something/extended/version to localhost:8080/extended/version. I can't use virtual hosting there, how about url rewr

Re: [EMAIL PROTECTED] Redirecting urls to a server on a different port

2006-03-05 Thread Dick Middleton
Bart Braem wrote: Is it possible to redirect requests on a certain url to a local server on a different port? Something like www.somewhere.com/something to localhost:8080 and www.somewhere.com/something/extended/version to localhost:8080/extended/version. Have a look at mod_proxy Dick

Re: [EMAIL PROTECTED] Redirecting urls to a server on a different port

2006-03-05 Thread victor
Try sometring like this Redirect /index.php http://localhost:8081 I use it with virtual host. index.php is a file from the docroot of that virtual host. Bart Braem wrote: Hello, Is it possible to redirect requests on a certain url to a local server on a different port? Something like www.some

[EMAIL PROTECTED] Re: Redirecting urls to a server on a different port

2006-03-05 Thread Bart Braem
victor wrote: > Try sometring like this > Redirect /index.php http://localhost:8081 > I use it with virtual host. > index.php is a file from the docroot of that virtual host. That seems a nice solution but how can I make it work for an unlimited number of files? Should I use regular expressions t

[EMAIL PROTECTED] Re: Redirecting urls to a server on a different port

2006-03-05 Thread Bart Braem
Dick Middleton wrote: > Bart Braem wrote: > >> Is it possible to redirect requests on a certain url to a local server on >> a different port? Something like www.somewhere.com/something to >> localhost:8080 and www.somewhere.com/something/extended/version to >> localhost:8080/extended/version. >

Re: [EMAIL PROTECTED] Re: Redirecting urls to a server on a different port

2006-03-05 Thread victor
Try RedirectMatch instead Redirect. You can find all the necesary docs here: http://httpd.apache.org/docs/1.3/mod/mod_alias.html#redirectmatch. Bart Braem wrote: victor wrote: Try sometring like this Redirect /index.php http://localhost:8081 I use it with virtual host. index.php is a fi

Re: [EMAIL PROTECTED] Re: Redirecting urls to a server on a different port

2006-03-05 Thread Dick Middleton
Bart, Have a look at mod_proxy I already did, it seems to work only with subdomains. Or am I mistaken there? I can't find good information on not using subdomains as it's difficult to search for... No. Reverse proxy is more like an alias where a particular URL is mapped onto another URL.

[EMAIL PROTECTED] Apache2.2 connection close, FIN,ACK error

2006-03-05 Thread Dick Middleton
I've been having real trouble getting apache2.2 to work on Devil-Linux 1.2.9. Apache has upgraded from 2.0.53 to 2.2.0 and the linux kernel to 2.4.32. The older version of Apache worked fine. I have set up a laptop as a test bed and set the very minimum network configuration. I've also made

Re: [EMAIL PROTECTED] Proxy to External Site

2006-03-05 Thread Robert Ionescu
Michael Flanakin wrote: but I was wondering if anyone could verify my setup. Yes, it looks correct to me, but shouldn't ServerAlias look like ServerAlias *.external.website.com? Not necessary but some have had problems with it: ProxyPass / http://xx.xx.xx.xx I'd append a slash: ProxyP

SV: SV: [EMAIL PROTECTED] Rewrite on Windows-server (subdomain)

2006-03-05 Thread Dennis Madsen
Sorry, but can you help me? Med venlig hilsen / Best regards Dennis Madsen DeMaWeb http://www.demaweb.dk CVR-nr.: 2895 9486 -Oprindelig meddelelse- Fra: Robert Ionescu [mailto:[EMAIL PROTECTED] Sendt: 3. marts 2006 15:01 Til: users@httpd.apache.org Emne: Re: SV: [EMAIL PROTECTED] Rewrit

Re: SV: SV: [EMAIL PROTECTED] Rewrite on Windows-server (subdomain)

2006-03-05 Thread Robert Ionescu
Dennis Madsen wrote: The requested operation has failed. Is this being logged into your error.log? I'm not sure if this is just a posting issue, but some line breaks are missing: RewriteEngine On RewriteCond %{HTTP_HOST} ^([^.]+)\.myhp\.dk$ RewriteCond %1 !^www$ RewriteCond c:/www/myhp.dk/

SV: SV: SV: [EMAIL PROTECTED] Rewrite on Windows-server (subdomain)

2006-03-05 Thread Dennis Madsen
Hei, I'm so happy - it succeded :) Thanks for your help. Med venlig hilsen / Best regards Dennis Madsen DeMaWeb http://www.demaweb.dk CVR-nr.: 2895 9486 -Oprindelig meddelelse- Fra: Robert Ionescu [mailto:[EMAIL PROTECTED] Sendt: 5. marts 2006 20:49 Til: users@httpd.apache.org Emne: Re

[EMAIL PROTECTED] Slow configure process on AIX

2006-03-05 Thread Peter Eckel
Hi, I am just building Apache httpd 2.2.0 on AIX 5.2. During the first run of configure, I noticed that the configuration process is extremely slow. The most sluggish part is when configure tries to figure out which version of the Berkeley DB is to be used. The tests literally take forever.

[EMAIL PROTECTED] please help me!

2006-03-05 Thread Arturo Ignacio Partarrieu Ramos
Hi, I'm trying to host my own web sites, in my machine, with my own domain, under SUSE 10. My idea is to name my localhost as Linux and a virtualhost with the domain "www.artenovias.cl". So the computer (browser) respond when typing http://Linux and http://www.artenovias.cl

[EMAIL PROTECTED] signal Segmentation fault (11)

2006-03-05 Thread Kane Wilson
HI , I Installed  Server version: Apache/2.2.0 with mod_proxy . It's proxying well . but when receiving web request it givies more errors saying , Mon Mar 06 11:23:08 2006] [notice] child pid 31393 exit signal Segmentation fault (11) [Mon Mar 06 11:23:08 2006] [notice] child pid 32254 exit signa

Re: [EMAIL PROTECTED] Slow configure process on AIX

2006-03-05 Thread httpd2
What about just removing ksh completely from your system, and creating a symbolic link called ksh to point to the bash shell? Would this work, or would it break your system? Keith In theory, theory and practice are the same; In practice they are not. On Mon, 6 Mar 2006, Peter Eckel wrote: >

Re: [EMAIL PROTECTED] Directive Under HTTPS

2006-03-05 Thread Nick Withers
No takers? Anyone have a working "" directive under HTTPS? Thanks for you time! -- Nick Withers email: [EMAIL PROTECTED] Web: http://www.nickwithers.com Mobile: +61 414 397 446 On Fri, 3 Mar 2006 15:09:22 +1100 Nick Withers <[EMAIL PROTECTED]> wrote: > G'day all, > > I'm going quickly insane

[EMAIL PROTECTED] Re: Re: Redirecting urls to a server on a different port

2006-03-05 Thread Bart Braem
Dick Middleton wrote: > Bart, >>>Have a look at mod_proxy > >> I already did, it seems to work only with subdomains. Or am I mistaken >> there? I can't find good information on not using subdomains as it's >> difficult to search for... > > No. Reverse proxy is more like an alias where a particu