| Linux - Server This forum is for the discussion of Linux Software used in a server related context. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
10-25-2011, 08:36 AM
|
#1
|
|
Member
Registered: May 2002
Location: NY, USA
Distribution: FreeBSD, Fedora, RHEL, Ubuntu; OS X, Win; have used Slackware, Mandrake, SuSE, Xandros
Posts: 448
Rep:
|
apache rewrite proxy problem
I'm trying to convert some static reverse ProxyPass rules into a rewrite with regex (since ProxyPass doesn't support much regex).
I'd like to convert URL requests for /myurl/path1/path2/* to be proxied to:
http://www.example.com/dir1/dir2/path1-path2/*
So I try:
Code:
RewriteRule ^/myurl/(\w+)/(\w+)/(.*)$ http://www.example.com/dir1/dir2/$1-$2/$3
When I try a /myurl/etc. request in a browser, I don't get an error, I don't see anything in the apache logs except for a rewrite proxy pass to the proper back-end, but in the browser, I get an error, and it's trying to connect to the back-end but can't:
Server not found
Firefox can't find the server at www.example.com.
The target URL on the destination host is definitely reachable via the proxy host (tested via wget). Am I screwing up something in the regex?
|
|
|
|
10-25-2011, 09:05 AM
|
#2
|
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 42,707
|
if you want to stick with mod_proxy the you can use regexes just fine with ProxyPassMatch
as for the rewrite, are you getting a 302 back from it? what does it say? firebug or a few "curl -v"s are your friends.
Last edited by acid_kewpie; 10-25-2011 at 09:06 AM.
|
|
|
|
10-25-2011, 09:49 AM
|
#3
|
|
Member
Registered: May 2002
Location: NY, USA
Distribution: FreeBSD, Fedora, RHEL, Ubuntu; OS X, Win; have used Slackware, Mandrake, SuSE, Xandros
Posts: 448
Original Poster
Rep:
|
Quote:
Originally Posted by acid_kewpie
if you want to stick with mod_proxy the you can use regexes just fine with ProxyPassMatch
|
Thanks Chris. If I can get regex working eventually, I'll probably stick with a rewrite, unless there's a good reason to move to PPM?
Quote:
|
as for the rewrite, are you getting a 302 back from it? what does it say? firebug or a few "curl -v"s are your friends.
|
A browser request to a desired URL returns a 404. The resultant server error message is :
File does not exist: /var/www/html/myurl
The corresponding server rewrite entry is:
(1) pass through /myurl/dir1/dir2
A wget from the proxy server itself to a target URL completes successfully. So there must be a screw-up in the regex rule?
|
|
|
|
10-26-2011, 10:00 AM
|
#4
|
|
Member
Registered: May 2002
Location: NY, USA
Distribution: FreeBSD, Fedora, RHEL, Ubuntu; OS X, Win; have used Slackware, Mandrake, SuSE, Xandros
Posts: 448
Original Poster
Rep:
|
This turned out not to be a regex problem at all (that part was actually correct), but the dreaded 'trailing slash' problem. Once I added another rewrite before this one to turn a directory request not ending with `/` to include the `/`, this worked fine.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 09:07 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|