Well.. I'm just trying to make sure that I cover all ends to make sure that a
DNS alias (a CNAME) is working correctly like I expected. I've having some
Virtual Host problem... You can see my previous posts with this subject title
"Struggle with Named Virtual Host - The Second Named Virtual Host
On Tue, May 18, 2010 at 8:53 PM, Wang, Mary Y wrote:
> Hi,
>
> Is /etc/resolve.conf being used for Apache2 to resolve DNS issues?
Apache calls into your systems resolver, which might be configured by
/etc/resolv.conf.
Why do you suspect it doesn't? What problem do you have?
--
Eric Covener
cov
Hi,
Is /etc/resolve.conf being used for Apache2 to resolve DNS issues?
Thanks
Mary
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsu
Thanks for the help. The DNS alias is properly set for the download-devbrass2,
it is listed as a CNAME for devbrass2. When you said "Are you sure the DNS
alias is properly set for the download domain?, did you just mean that I needed
to register the download-devbrass2 as a . If so, yes, I did
On 18 May 2010, at 23:02, Piotr Kloc wrote:
> Hello !
> Can I set the redirect 301 not in .htaccess but in apache conf ?
> I have tried to set this
>
> RewriteEngine on
> RewriteRule ^webmail/(.*)$ http://somedomain.com/webmail/$1 [R=301,L]
Every URL starts with /, so none can match that patte
Hello !
Can I set the redirect 301 not in .htaccess but in apache conf ?
I have tried to set this
RewriteEngine on
RewriteRule ^webmail/(.*)$ http://somedomain.com/webmail/$1 [R=301,L]
and it doesnt work
if I put this in .htaccess it does
I want to set redirect directory for all my vhosts http
There is the possibility to use an exclusion and not proxy requests to a
subdirectory.
However, how do you plan on stopping a user that wants to get to
resource-lists(192.168.1.1) from going to the other service with the same
url?
I don't think the exclusion is the answer you are exactly looking fo
hi,
I configured reverse proxy like this:
BalancerMember http://192.168.1.1/services/resource-lists
AuthType Digest
AuthName "test.com"
AuthDigestProvider dbd
AuthDigestQop auth
AuthDigestNonceLifetime 30
Require valid-user
AuthDBDUserRealmQuery
On 05/18/2010 12:25 PM, Igor Cicimov wrote:
Dude, you really want everything serve on a plate :)
RewriteRule (.*)/(.*)/$ $1/$2 [R=301,L]
or even better
RewriteRule (.*)/$ $1 [R=301,L]
On Tue, May 18, 2010 at 4:37 PM, Nilesh Govindarajan mailto:li...@itech7.com>> wrote:
On 05/18/2010 11