Re: [users@httpd] Expose my server to internet

2019-07-04 Thread Bob Cochran
On 7/4/19 1:45 PM, Padmahas Bn wrote: Hello Bob, Richar and Mark, Thank you for your response. *@**Bob Cochran*, Yeah, I can access port 80 form my local but not from internet. I'm trying to access my IP from mobile network (Not wifi, from data pack) Please find my comments below.

Re: [users@httpd] Expose my server to internet

2019-07-03 Thread Bob Cochran
ache2/access.log This page on our site might help you with tcpdump: https://mindchasers.com/dev/tools-tcpdump Good luck, Bob So just wanted to know whether should I configure anything in Apache httpd to make port 80 accessible? Thank you. ---

Re: [users@httpd] Mod_Substitute - Match the last occurrence of a string in the response

2016-11-22 Thread bob gailer
On 11/22/2016 11:50 AM, Mayuresh wrote: Hi, How can I check for the last occurrence of a string in the response html and only replace the last occurrence of it? I want to search for the last "meta" tag in the response and replace it with something. Sorry - I just noticed Mod_Substitute in y

Re: [users@httpd] Mod_Substitute - Match the last occurrence of a string in the response

2016-11-22 Thread bob gailer
to handle that. OR - What is generating the response? (Example: an HTML document, a PHP page you have written, a Python program, or what)? Bob - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additi

Re: [users@httpd] Second apache as fallback server

2016-02-15 Thread Bob
s for production clusters. I wonder how cloud cluster address this issue !! On Monday 15 February 2016 02:34 PM, Yehuda Katz wrote: On Mon, Feb 15, 2016 at 9:24 AM, Bob <mailto:bobnli...@gmail.com>> wrote: The challenge is to maintain unique web server log across the nodes. Any c

Re: [users@httpd] Second apache as fallback server

2016-02-15 Thread Bob
maintain unique web server log across the nodes. Any clue about that ? Again for pages which send emails, all nodes must have running postfix with same domain. I'm also wondering how to do that. Thanks and regards, Bob On Monday 15 February 2016 01:32 PM, Meta Correio wrote: Bob, simple di

Re: [users@httpd] Second apache as fallback server

2016-02-15 Thread Bob
? On Monday 15 February 2016 09:02 AM, Meta Correio wrote: We have it implemented using and external, redundant , load balancer. It really comes down to your budget. John On Mon, Feb 15, 2016 at 8:58 AM, Bob <mailto:bobnli...@gmail.com>> wrote: Hello, Thanks for the valuable su

Re: [users@httpd] Second apache as fallback server

2016-02-15 Thread Bob
specifying the second web server as hot standby El dom., 14 feb. 2016 a las 16:49, Bob (mailto:bobnli...@gmail.com>>) escribió: Hello list, I have two servers. One is already up with apache, mysql etc.. Now I wonder if I can configure the second server as a f

[users@httpd] Second apache as fallback server

2016-02-14 Thread Bob
regards, Bob - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

[users@httpd] Re: Removing query string through .htaccess

2015-05-21 Thread Bob
u, May 21, 2015 at 6:18 AM, Bob wrote: > I'm also successful with following but goes to home page, can't preserve the > actual link > RewriteCond %{THE_REQUEST} \?[^\ ]+ > RewriteRule (.*) /$1? [R=302,L] > Works for me. Although I would write the rule like thi

[users@httpd] Re: Removing query string through .htaccess

2015-05-21 Thread Bob
I'm also successful with following but goes to home page, can't preserve the actual link RewriteCond %{THE_REQUEST} \?[^\ ]+ RewriteRule (.*) /$1? [R=302,L] On Thu, 21 May 2015 12:23:42 + Bob wrote: > Hello All, > > I have already gone through a no. of links for rem

[users@httpd] Removing query string through .htaccess

2015-05-21 Thread Bob
epage, but is there any rule set which just remove the query string and keep the url intact ? like http://mywxample.com/any_page/?xyz should be changed as http://mywxample.com/any_page Any help is very much appreciated. with regards

[users@httpd] apache fastcgi trouble with Apache/2.2.22

2015-01-05 Thread Bob
Dear list, has anyone successfully run fastcgi with Apache/2.2.22 on debian wheezy ? I need your kind help to make it working.. I have already the required modules running namely [ actions alias fastcgi ] I also have the following wrapper script with execute permission /usr/lib/cgi-bin/php55-cg

[users@httpd] compiled php 5.5.20 throws error [RewriteRule directive is forbidden: /usr/lib/cgi-bin/php55-cgi]

2015-01-01 Thread Bob
Dear list, I am already messed-up compiling php 5.5.20 as cgi module and seeking your kind guidance to put the things back on track. I have compiled php 5.5.20 on debian (wheezy) 7.7 The objective is to allow some websites run with php 5.5.x as cgi module The source code is located at /usr/loca

[users@httpd] RE: Version Number on a Mac?

2014-08-17 Thread Bob Cole
Try this in the Terminal window: $ httpd -v Server version: Apache/2.2.26 (Unix) Server built: Dec 10 2013 22:09:38 Bob

Re: [users@httpd] .htaccess and query string

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 09:34:19 -0400 Eric Covener wrote: > On Wed, Jul 30, 2014 at 9:25 AM, Bob wrote: > >> RewriteRule ^/$ http://domain/sitemap.xml [R=301,L] > > wrong for htaccess. Try ^$ > Dear Eric, many many thanks for the clue :-) the URL has modifie

Re: [users@httpd] .htaccess and query string

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 08:59:54 -0400 Roman Jurkov wrote: > Bob, > > there is not “?” in the QUERY_STRING, and RewriteRule at the moment states > that you want to match dd_googlesitemap in your URL, which based on your > initial email is not what you want. > > you want:

Re: [users@httpd] .htaccess and query string

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 08:25:46 -0400 Eric Covener wrote: > On Wed, Jul 30, 2014 at 8:06 AM, Bob wrote: > > RewriteCond %{QUERY_STRING} ^&L=0$ [NC] > > > the query strin doesn't begin with &L. Why are you only matching part of it? > I try to use

Re: [users@httpd] .htaccess and query string

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 07:51:25 -0400 Eric Covener wrote: > On Wed, Jul 30, 2014 at 7:48 AM, Bob wrote: > > RewriteRule dd_googlesitemap http://domain/sitemap.xml [R=301,L] > > First arg should be ^$ not a piece of the query string. > > Hello Eric, thanks for your response

[users@httpd] .htaccess and query string

2014-07-30 Thread Bob
Dear list, I need a rewrite where query string is the answer. http://domain/?eID=dd_googlesitemap&L=0 should be redirected to http://domain/sitemap.xml So I have added the following to .htaccess RewriteEngine on RewriteCond %{QUERY_STRING} ^\eID\=dd_googlesitemap\&L=0$ [NC] RewriteRule dd_goog

Re: [users@httpd] Changing the User Which Runs Apache

2013-08-14 Thread Bob Proulx
Noah Duffy wrote: > Bob Proulx wrote: > > Sorry for the long rant. I rarely get down to this mailing list in my > > reading. I did today and your discussion thread caught my attention > > and I was compelled to comment upon it. > > I had to read your response twi

Re: [users@httpd] Changing the User Which Runs Apache

2013-08-08 Thread Bob Proulx
packages full file system access. I can't recall seeing anyone who has run the web server as them. But sometimes I do see it running as other random custom system user. But at that point any user is as good as another. Sorry for the long rant. I rarely get down to this mailing list in my reading. I did today and your discussion thread caught my attention and I was compelled to comment upon it. Bob - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Transferring xhr messages between Apache and a Persistent Program

2012-09-12 Thread Bob Furber
On 12-09-11 10:43 AM, Jeff Trawick wrote: One step up would be to use FastCGI instead of CGI, which would leave your request handler running as a separate process but which would perform much better as there would be no need to create a new process for every request it handles. That might not r

[users@httpd] Transferring xhr messages between Apache and a Persistent Program

2012-09-11 Thread Bob Furber
Can anyone point me in the right direction as to how to go about Transferring xhr messages between Apache and a Persistent Program? We currently use a cgi script (C program) that transfers xhr messages back and forth to a persistent (C) program using shared memory. Although the CGI program [s

RE: [users@httpd] RE: httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure

2012-09-11 Thread Law, Bob
re On Tue, Sep 11, 2012 at 4:09 PM, Law, Bob wrote: > I was able to figure out the problem. Httpd 2.2.22 does not support the > command in the ssl.conf file. Once I removed that, then it > started loading my ssl configuration. > httpd supports just fine. For 'SSL' to b

[users@httpd] RE: httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure

2012-09-11 Thread Law, Bob
www.ovid.com -Original Message- From: Law, Bob [mailto:robert@wolterskluwer.com] Sent: Monday, September 10, 2012 1:40 PM To: users@httpd.apache.org Subject: [users@httpd] httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure I am trying to run httpd 2.2.22 with open_ssl built

RE: [users@httpd] httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure

2012-09-11 Thread Law, Bob
10, 2012 3:18 PM To: users@httpd.apache.org Subject: Re: [users@httpd] httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure On Mon, 10 Sep 2012 19:39:42 + "Law, Bob" wrote: > The error_log gives me the following error: > Invalid method in request \x16\x03

[users@httpd] Transferring xhr messages between Apache and a Persistent Program

2012-09-10 Thread Bob Furber
Can anyone point me in the right direction as to how to go about Transferring xhr messages between Apache and a Persistent Program? We currently use a cgi script (C program) that transfers xhr messages back and forth to a persistent (C) program using shared memory. Although the CGI program [s

[users@httpd] httpd 2.2.22, mod_jk, open_ssl, does not appear to be running secure

2012-09-10 Thread Law, Bob
I am trying to run httpd 2.2.22 with open_ssl built in and mod_jk. It does not appear that my SSL is working. Using Firefox and the following httpd.conf and ssl.conf files, I can access my site https://shibboleth-dev..com:8397/osp and my request is routed through mod_jk and the application

Re: [users@httpd] Re: Help with config

2011-01-14 Thread Bob Wilson
On 14/01/2011 01:49, DW wrote: See if this helps: <http://httpd.apache.org/docs/2.0/urlmapping.html> Good luck. Bob Wilson wrote: Can any one help with the initial configuration of Apache? I was told that to make localhost point to a alternative directory I should change bo

Re: [users@httpd] Re: Help with config

2011-01-14 Thread Bob Wilson
On 14/01/2011 08:01, Carsten Wiedmann wrote: Am 13.01.2011 13:41, schrieb Bob Wilson: DocumentRoot "C:/Users/User/My Documents/htdocs" Which doesn't work with error message 'The requested operation has failed!' IMHO "My Documents" should writte

Re: [users@httpd] Help with config

2011-01-14 Thread Bob Wilson
mmands, e-mail: users-h...@httpd.apache.org Thanks for that. moving it to c:\data\htdocs did work so we can assume that it is an ACL problem and nothing to do with apache! Bob - The official User-To-User support forum of the Apache H

Re: [users@httpd] Help with config

2011-01-13 Thread Bob Wilson
On 13/01/2011 17:02, Nick Kew wrote: On 13 Jan 2011, at 12:41, Bob Wilson wrote: Can any one help with the initial configuration of Apache? Get the error message from apache. Open a command window, and run "apache -X" in it. That should either work (in which case your problem is

Re: [users@httpd] Help with config

2011-01-13 Thread Bob Wilson
On 13/01/2011 13:27, Simone Caruso wrote: On 13/01/2011 13:41, Bob Wilson wrote: Can any one help with the initial configuration of Apache? I was told that to make localhost point to a alternative directory I should change both the 'Documentroot' AND 'Directory' paths

[users@httpd] Help with config

2011-01-13 Thread Bob Wilson
pache Software Foundation/Apache2.2/htdocs" I have changed it to: DocumentRoot "C:/Users/User/My Documents/htdocs" Which doesn't work with error message 'The requested operation has failed!' I'm sure that I didn't hav

Re: [us...@httpd] connection is resetting

2010-11-25 Thread Bob . Anstruther
Hi, I wonder if it might be a memory leak problem you are seeing, monitor your resources, to check if this is the case. Thanks, Robert Anstruther. Please save a tree. Don't print this message unless you really have to.

[us...@httpd] Override timeout for one script?

2010-08-26 Thread Bob
I have a slow CGI script that processes data for 10 minutes before producing output. This is greater than the Timeout amount in the httpd.conf. Is there a way I can override the timeout on a per-script or per-directory basis? since I cannot change the value globally for everyone on the server. I lo

[us...@httpd] Unsubscribe

2010-07-09 Thread Sather, Bob
Thanks Lloyds TSB Bank plc. Registered Office: 25 Gresham Street, London EC2V 7HN. Registered in England and Wales, number 2065. Telephone: 020 7626 1500. Bank of Scotland plc. Registered Office: The Mound, Edinburgh EH1 1YZ. Registered in Scotland, number 327000. Telephone: 0870 600 5000 Lloyd

[us...@httpd] SSL Accelerator and LDAP Auth Question‏

2010-04-18 Thread Bob Smith
Hello, I noticed in the archive that my message got mangled making it completely unreadable, so please excuse my double post, I am posting from my Gmail account instead. My original message follows. I am trying to configure Apache 2.2 to allow act as an SSL accelerator with LDAP authentication

[us...@httpd] SSL Accelerator and LDAP Auth Question

2010-04-17 Thread Bob Smith
Hello, I am trying to configure Apache 2.2 to allow act as an SSL accelerator with LDAP authentication and I'm having two issues. My first issue is I cannot get Apache to work as an SSL accelerator. My current configuration: NameVirtualHost site.system.com:443 DocumentRoot "/mnt/data/re

[us...@httpd] PHP 4 and 5

2010-03-17 Thread Bob Cohen
Is is possible to run php4 and 5 on the same apache server? Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-m

Re: [us...@httpd] Appahe and Vista

2010-03-05 Thread Bob Vezzuso
it. Bob - Original Message - From: "Eric Covener" To: Sent: Friday, March 05, 2010 3:36 PM Subject: Re: [us...@httpd] Appahe and Vista On Fri, Mar 5, 2010 at 3:31 PM, Bob Vezzuso wrote: I recently installed Appache on my new Vista system. Under XP, I edited the httpd.co

[us...@httpd] Appahe and Vista

2010-03-05 Thread Bob Vezzuso
changes, but when I open the file using Appache's editor, my changes are not there, yet all indications tell me I am in the same file in the same directory structure using both editors. How can get this to change and point to my directory? Bob

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
Thanks again Eric. Once I moved the SSL virtual host within SSL.CONF, that did the trick and everything worked as expected. Much appreciated. On Fri, Oct 16, 2009 at 12:16 PM, Eric Covener wrote: > On Fri, Oct 16, 2009 at 2:02 PM, Bob Schell wrote: > > Thanks again for the quick re

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
Thanks again for the quick reply. How did my config also imply http over 443? On Fri, Oct 16, 2009 at 11:51 AM, Eric Covener wrote: > On Fri, Oct 16, 2009 at 1:48 PM, Bob Schell wrote: > > However, then, within the application I am using, if I logout of the > > application

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
rote: > On Fri, Oct 16, 2009 at 1:05 PM, Bob Schell wrote: > > The problem I am having is my PHP code is pulling the > > $_SERVER['SERVER_PORT'] variable and this is coming back as 80 rather > than > > 443. To narrow this problem down, I've closed por

Re: [us...@httpd] apache redirection does not work

2009-10-01 Thread Bob Ionescu
content=20090624_075115_6540 Please enable a RewriteLog with Rewritelog logs/rewrite_log Rewriteloglevel 6 in your httpd.conf and post the result (may be as an attachment). Bob - The official User-To-User support forum of the Apache HT

Re: [us...@httpd] IndexIgnore

2009-09-29 Thread Bob Ionescu
to be an IndexUnignore directive or any syntax > that I see to remove a file or pattern from the list of ignored files. Correct. Currently, you can't undo/override IndexIgnore (only add), IIRC for security reasons. Bob -

Re: [us...@httpd] .htaccess not honoured anymore

2009-09-16 Thread Bob Ionescu
2009/9/16 Nico De Ranter : > however the 'require' directive doesn't seem to have any effect anymore? You're overriding it with your definition. A location section overrides directives placed in .htaccess files, see http://httpd.apache.org/docs/2.2/se

Re: [us...@httpd] Rewrite Rule question

2009-09-15 Thread Bob Ionescu
intended for the third rule. Solution: Reverse the order (special patterns followed by more general patterns) or change the regular expression to "not to match anything followed by Authenticate", i.e., by marking "end of string" with a $ sign: RewriteRule ^/Aut

Re: [us...@httpd] .htaccess

2009-09-10 Thread Bob Ionescu
p into a problem (not to mention implementing something like that). Conclusion: You'll need your own module with some sort of session database attached to save the state user x HTTP 401, allow one request with credentials for that username, HTTP 401, allow one request with credentials

Re: [us...@httpd] mod_rewrite internal sub-request returns status 200 instead of expected 404 (mod_proxy issue?)

2009-09-03 Thread Bob Ionescu
th mod_rewrite or is this > expected behaviour? Expected. The handler is not invoked in this sub-request lookup. So in fact, you can only check if the resource is accessible on server A (->access controls). Bob - The officia

Re: [us...@httpd] Lookaround assertions in mod_rewrite/mod_alias regex?

2009-09-02 Thread Bob Ionescu
or a syntax error for > mod_alias. But you're using Apache 2+? Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe,

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

2009-08-12 Thread Bob Ionescu
eCond %{HTTP_HOST} =files.example.com [NC] # exclude th folder RewriteCond $1 !^/files/public/ RewriteRule ^(.*) /files/public/$1 [L] Setting the DocumentRoot for files.example.com in your httpd.conf to /home/example/public_html/files/public would be another (may be the regula

Re: [us...@httpd] Redirection problem with dynamic url parameters

2009-08-10 Thread Bob Ionescu
u'll need a RewriteCond to check the query string. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-m

Re: [us...@httpd] Attempt to serve directory:

2009-07-24 Thread Bob Ionescu
he index? In contrast to trunk (becoming 2.3/2.4) DirectoryIndex won't work if you force a handler (for everything) via SetHandler. You can work-around this issue by placing the Sethandler directive into a container (i.e. restrict it to files). But anyway; since you're using AddHanler,

Re: [us...@httpd] Falling off the end of a directory listing

2009-07-24 Thread Bob Ionescu
ent inheritance ^/var/www/html/foo/downloads$) Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsu

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-23 Thread Bob Ionescu
2009/7/23 Brian Kim <09su.resea...@gmail.com>: [...] > [...] Can a reverse apache help for my configuration? See my posting to this list 23 hrs. ago. Bob - The official User-To-User support forum of the Apache HT

Re: [us...@httpd] Transparent Proxy Server Installation

2009-07-22 Thread Bob Ionescu
ewriteCond %{THE_REQUEST} ^[A-Z]{3,5}\ (/[^?\ ]*) RewriteRule ^/ http://%{HTTP_HOST}%1 [NE,P] Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info.

Re: [us...@httpd] prg with rewrite_map does not seem to be working, maybe a bug

2009-06-30 Thread Bob Ionescu
2009/6/30 Ali Jawad : > isn't it enough to set it to on in .htacccess. Not for the map type prg. But why don't you use the rules in your apache2.conf? Since you're rewriting to a reverse proxy situation, you could avoid th

Re: [us...@httpd] mod_rewrite on Windows with Apache 2.2

2009-06-30 Thread Bob Ionescu
alking about the main server configuration file (httpd.conf) and not a per-directory configuration file?! Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html&

Re: [us...@httpd] prg with rewrite_map does not seem to be working, maybe a bug

2009-06-30 Thread Bob Ionescu
am shouldn't be started during server startup. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubs

Re: [us...@httpd] Using .htaccess to force rewriting URLs to https:// works but loses any subdirectory paths. What do I need to change?

2009-06-15 Thread Bob Linkonij
in the .htaccess file. But still when I go to http://Domain.com/subdirectory I get redirected to https://Domain.com NOT the https://Domain.com/subdirectory Something else wrong with what I did maybe? Bob - The offici

[us...@httpd] Using .htaccess to force rewriting URLs to https:// works but loses any subdirectory paths. What do I need to change?

2009-06-15 Thread Bob Linkonij
main.com, instead of preserving the subdirectory path. In other words ending up at: https://www.Domain.com/something What do I need to change or add to get the subdirectory paths to "stick" after changing to the https:// ? Bob ---

Re: [us...@httpd] Mixing rewrite with authn_dbd: Rewriting based on path value stored in mysql table

2009-05-12 Thread Bob Ionescu
to abort something below, i.e. if there's nothing, there's nothing to abort (F implies L btw., the substitution will be dropped as well). Your second rule (forbidden) comes never true, if the first rule matched. So you could stop further (useless) processing with the L flag at your first rule

Re: [us...@httpd] Mixing rewrite with authn_dbd: Rewriting based on path value stored in mysql table

2009-05-11 Thread Bob Ionescu
2009/5/11 Roman Medina-Heigl Hernandez : > Bob Ionescu escribió: >> 2009/3/2 Roman Medina-Heigl Hernandez : >>> The problem is that you cannot have %{REMOTE_USER} as 2nd parameters in >>> RewriteCond, so I have no way for comparing it with $1 >> >> -didn

Re: [us...@httpd] Mixing rewrite with authn_dbd: Rewriting based on path value stored in mysql table

2009-05-11 Thread Bob Ionescu
+)<>\1 RewriteRule ^/clientes/(.*) /stats/%{REMOTE_USER}/stats/http/$1 [L] Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsub

Re: [us...@httpd] mod_rewrite redirect to local path issue

2009-03-11 Thread Bob Ionescu
ias, use mod_alias for such a simple redirection instead of mod_rewrite: Redirect 301 /othersite http://.com Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.

Re: [us...@httpd] exclude errorDocument from authentication

2009-03-02 Thread Bob Ionescu
er location section: Order deny,allow Allow from all Satisfy any Bob - 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

Re: [us...@httpd] Problems with redirects...

2009-02-16 Thread Bob Ionescu
work correctly? Your RegEx ^/(.*) is open for every request. To catch the "root" request only, change it to ^/$ instead. Your condition checks the host header. You're redirecting to the same host (www.saddlebrook.com), wh

Re: [us...@httpd] build httpd with OS's PCRE lib

2009-02-10 Thread Bob Ionescu
ep -i pcre I got nothing output. IIRC it's configurable in 2.2 with --with-pcre= but not in 2.0. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.h

Re: [us...@httpd] Semantics of "RewriteOptions inherit" in htaccess files needs improvement

2009-02-02 Thread Bob Ionescu
2009/2/2 Matt McCutchen : > On Sun, 2009-02-01 at 23:19 +0100, Bob Ionescu wrote: >> E.g. domain1 points to /var/www, domain2 to /var/www/sub and >> /var/www/sub/.htaccess inherits (i.e. 1:1 copy) /var/www/.htaccess. A >> regEx of ^foo$ in /var/www/sub/.htaccess would match

Re: [us...@httpd] Semantics of "RewriteOptions inherit" in htaccess files needs improvement

2009-02-01 Thread Bob Ionescu
t matter in per-dir context for matching) would be in both cases /foo while the domain is different. Two different setups - two different intentions about overriding the parent configuration and the inheritage of the rules. Bob

Re: [us...@httpd] robots.txt and rewrite rule

2009-01-23 Thread Bob Ionescu
t; RewriteCond ${hosts-deny:%{HTTP:true-client-ip}|NOT-FOUND} !=NOT-FOUND > RewriteCond $1 !=robots.txt > RewriteRule ^/.* - [F] That's the wrong rule, it should be placed above the rule which proxies, i.e. RewriteCond $1 !=robots.txt RewriteRule ^/(.*) http://localhos

Re: [us...@httpd] robots.txt and rewrite rule

2009-01-22 Thread Bob Ionescu
writeCond $1 !=robots.txt RewriteRule ^/(.*) http://localhost:12080/companies/$1 [P] Bob - 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

Re: [us...@httpd] ReWrite woes

2009-01-14 Thread Bob Ionescu
2009/1/14 Sheldon Ross : >RewriteRule ^/bob$ /temp1/temp1/temp2 That rule (with 'RewriteEngine on' as already mentioned) wouldn't match in a section (per-directory context) but it would match outside of the section (per-server context). Strip the leading slash

Re: [us...@httpd] mod_rewrite redirects instead of silent rewrite

2009-01-13 Thread Bob Ionescu
2009/1/13 Marcin : > I've tried to add > > RewriteEngine On > RewriteCond %{HTTP_HOST} (.+)\.demo\.myapp\.com$ > RewriteRule ^/$ /usersite/%1 > > but the effect is that apache is looking for a file /some/path/usersite/lucy May be you want

Re: [us...@httpd] Setting DirectoryIndex to a Location?

2009-01-12 Thread Bob Ionescu
2009/1/12 Michael Ludwig : > Bob Ionescu schrieb: >> http://httpd.apache.org/docs/2.2/sections.html#mergin > > Thanks. This helps a bit. But I still don't quite understand the > meaning of "be applied" and "be evaluated" in this section. Does this > r

Re: [us...@httpd] Setting DirectoryIndex to a Location?

2009-01-12 Thread Bob Ionescu
2009/1/12 Michael Ludwig : > Bob Ionescu schrieb: >> The location walk will be processed (again) after the directory and >> file walk. > > So my assumption was wrong. Does anyone know in which document this > behaviour is described? http://httpd.apache.org/docs/2.2/sect

Re: [us...@httpd] mod_rewrite, passing GET variables forward

2009-01-11 Thread Bob Ionescu
ill be hit and matched again. May be you'd like to match only characters not containing a period (i.e. no file extension): RewriteRule ^([^.]+)$ /index.php?page=$1 [QSA,L] Bob - The official User-To-User support fo

Re: [us...@httpd] Setting DirectoryIndex to a Location?

2009-01-09 Thread Bob Ionescu
www/eumel/www uri to /eumel/linch so that your location section should match. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubs

Re: [us...@httpd] Problem with URI conversion on Apache-1.3.41

2009-01-09 Thread Bob Ionescu
l it a (known) limitation. The support of apache 1.3 to run on windows was some kind of hacked in because apache 1.3 was never designed to run on windows. Consider to upgrade to 2.2 ASAP. Bob - The official User-To-User support fo

Re: [us...@httpd] rewrite rule ideas needed..

2009-01-09 Thread Bob Ionescu
quot;Canonical Hostnames": http://httpd.apache.org/docs/trunk/rewrite/rewrite_guide.html#canonicalhost But make sure, you're sending a 301 redirect (R=301) for search engines. Bob - The official User-To-User support forum o

Re: [us...@httpd] Re: help with rewrites - changing the base path

2008-12-29 Thread Bob Ionescu
the pattern: ^techblog(.*)$ and don't forget to enable the engine via RewriteEngine on. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html>

Re: [us...@httpd] Subdomains Hosting

2008-12-22 Thread Bob Ionescu
u can extend solution 2 by using sub.superman.example.com. Another way to do that on-the-fly without db look-ups is changing the path to users/sub1/ . Bob - The official User-To-User support forum of the Apache HTTP Server Proj

Re: [us...@httpd] RewriteRule

2008-12-22 Thread Bob Ionescu
2008/12/22 Andrew Hole : > I'm trying to setup a RewriteRule to redirect requests to a new different > server , but I want to keep the original URL on address bar. > How can I do that? Use the P flag to force that the request is handled by mod_proxy et al. (reverse p

Re: Using AuthName with mod_rewrite

2008-12-18 Thread Bob Ionescu
in per-server context do determine the value of that ENV: RewriteRule ^/$ http://localhost/home.seam?userid=%{LA-U:REMOTE_USER} [R,L] -or- use the rule in per-directory context RewriteEngine on RewriteRule ^$ http://localhost/home.seam?userid=%{RE

Re: RewriteRule / RewriteCond don't interpolate server variables in pattern regex

2008-12-15 Thread Bob Ionescu
2008/12/15 Pavel Ustyugov : > RewriteEngine On > RewriteBase / > RewriteCond %{REMOTE_USER} !^$ > RewriteRule !^usr/%{REMOTE_USER}/ /usr/%{REMOTE_USER}/ [R] > === > If user try to get out from own dir, server forcibly redirect him to correct > dir. > But, this ru

[EMAIL PROTECTED] Named Virtual Hosts on Apache on OS X 10.5 -Apache 2

2007-12-10 Thread Bob Hartung
. Is /etc/hosts correct or should it be 127.0.0.1 main etc. 2. Is httpd-vhost.conf set up corectly? TIA Bob Hartung - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.o

Re: [EMAIL PROTECTED] Apache 2 and SSL

2007-09-06 Thread Bob Cohen
On Sep 5, 2007, at 9:48 AM, Krist van Besien wrote: On 9/5/07, Bob Cohen <[EMAIL PROTECTED]> wrote: Can someone point me to some good resources for setting up Apache 2 with SSL? http://httpd.apache.org/docs/2.0/ssl/ is all I ever needed... Thanks Krist. That's not quite en

[EMAIL PROTECTED] Apache 2 and SSL

2007-09-05 Thread Bob Cohen
Can someone point me to some good resources for setting up Apache 2 with SSL? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscrib

Re: [EMAIL PROTECTED] Virtual Servers vs Virtual Private Servers

2007-08-30 Thread Bob Cohen
On Aug 29, 2007, at 3:16 PM, Joshua Slive wrote: This sort of "wondering" question is better suited to a forum or chat-room, rather than a technical support mailing-list. I wouldn't say it is totally off-topic, although I agree that there are better forums elsewhere. There are certainly some

Re: [EMAIL PROTECTED] Virtual Servers vs Virtual Private Servers

2007-08-29 Thread Bob Cohen
On Aug 29, 2007, at 11:11 AM, Boyle Owen wrote: This sort of "wondering" question is better suited to a forum or chat-room, rather than a technical support mailing-list. Sorry. I didn't mean to offend the list. Mea Culpa. Do you have any suggestions for said chat rooms o

[EMAIL PROTECTED] Virtual Servers vs Virtual Private Servers

2007-08-29 Thread Bob Cohen
Are there any real security benefits to operating Virtual Private Servers as opposed to properly configured Apache virtual servers? Bob - The official User-To-User support forum of the Apache HTTP Server Project. See http

[EMAIL PROTECTED] Where to find full list of Apache status codes

2007-06-30 Thread Bob
Look for url to complete list of Apache status codes containing their descriptions - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubsc

RE: [EMAIL PROTECTED] limiting connections per ip address in apache2 whenunder attack

2007-06-23 Thread Bob
Bob wrote: > > If this is a real attack then you were found by rolling through a whole > block of ip address looking for a open port 80. > Change your apache server to use different port say 7788 instead of port 80 > and then use the free www.zoneedit.com dns service to redir

RE: [EMAIL PROTECTED] limiting connections per ip address in apache2 whenunder attack

2007-06-21 Thread Bob
-Original Message- Bob wrote: > Is there a valid reason based on your web server content that people from > China would be accessing your site? Yes, we have a very large quantity of pdfs in Chinese. Converting them to html would presumably reduce the load but I don't think t

RE: [EMAIL PROTECTED] limiting connections per ip address in apache2 whenunder attack

2007-06-21 Thread Bob
Is there a valid reason based on your web server content that people from China would be accessing your site? If not then just deny packets from the complete range of IP address allocated to China??? Many email servers do that to cut off spam from China. Maybe what you are seeing is China search en

RE: [EMAIL PROTECTED] Deny CONNECT & GET http requests

2007-06-19 Thread Bob
-Original Message- On 6/19/07, Bob <[EMAIL PROTECTED]> wrote: > The replies to my post came back saying that apache defaults to denying > CONNECT requests which I was not able to verify. > That the CONNECT request is some how being spoofed through php which I was >

RE: [EMAIL PROTECTED] How to prevent Spammer from abusing Apache?

2007-06-19 Thread Bob
I posted my question with subject line ‘Deny CONNECT & GET http requests’. The replies to my post came back saying that apache defaults to denying CONNECT requests which I was not able to verify. That mod_proxy was causing it. I have mod-proxy commented out. That the CONNECT request is some how bei

  1   2   >