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. I'm

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

2019-07-03 Thread Bob Cochran
t 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. - To unsubscribe, e-m

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

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

2016-11-22 Thread bob gailer
w 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
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 <bobnli...@gmail.com <mailto:bobnli...@gmail.com>> wrote: The challenge is to maintain unique web server log across t

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

2016-02-15 Thread Bob
is to 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 diagram

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 <bobnli...@gmail.com <mailto:bobnli...@gmail.com>> wrote: Hello,

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

2016-02-15 Thread Bob
se proxy in front of both, you use balancer setup specifying the second web server as hot standby El dom., 14 feb. 2016 a las 16:49, Bob (<bobnli...@gmail.com <mailto:bobnli...@gmail.com>>) escribió: Hello list, I have two servers. One is already up with apa

[users@httpd] Second apache as fallback server

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

[users@httpd] Removing query string through .htaccess

2015-05-21 Thread Bob
, 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, Bob

[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 bobnli...@gmail.com wrote: Hello All, I have already gone through a no. of links

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

2015-05-21 Thread Bob
wrote: On Thu, May 21, 2015 at 6:18 AM, Bob bobnli...@gmail.com 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

[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

[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

[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

[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_googlesitemapL=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

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

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 07:51:25 -0400 Eric Covener cove...@gmail.com wrote: On Wed, Jul 30, 2014 at 7:48 AM, Bob bobnli...@gmail.com 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

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

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 08:25:46 -0400 Eric Covener cove...@gmail.com wrote: On Wed, Jul 30, 2014 at 8:06 AM, Bob bobnli...@gmail.com 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 RewriteCond

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

2014-07-30 Thread Bob
On Wed, 30 Jul 2014 08:59:54 -0400 Roman Jurkov winfi...@gmail.com 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: http

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

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

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 twice. It was loaded with more helpful

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

2013-08-08 Thread Bob Proulx
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

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

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 robert@wolterskluwer.com wrote: The error_log gives me the following error: Invalid method in request \x16

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

2012-09-11 Thread Law, Bob
@wolterskluwer.com 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

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
On Tue, Sep 11, 2012 at 4:09 PM, Law, Bob robert@wolterskluwer.com wrote: I was able to figure out the problem. Httpd 2.2.22 does not support the IfDefined SSL command in the ssl.conf file. Once I removed that, then it started loading my ssl configuration. httpd supports IfDefine just

[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

[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

[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

Re: [users@httpd] Help with config

2011-01-14 Thread Bob Wilson
...@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 HTTP Server Project. See

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 Directory C:/Users/User/My Documents/htdocs Which doesn't work with error message 'The requested operation has failed!' IMHO My Documents should written

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 both

[users@httpd] Help with config

2011-01-13 Thread Bob Wilson
that I didn't have this problem with XP but I'm now using Windows 7 Thanks Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info

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 The original info

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 isn't apache

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

[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

[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

[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 URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail

[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] Appahe and Vista

2010-03-05 Thread Bob Vezzuso
it. Bob - Original Message - From: Eric Covener cove...@gmail.com To: users@httpd.apache.org 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 bobv...@gmail.com wrote: I recently installed Appache on my new

Re: SetEnvIf und Server-Variable

2009-12-06 Thread Bob Ionescu
nicht geht Danke für den Denkanstoss. Es geht schon, wenn du das Modul nutzt, von dem du HTTPS übernommen hast. RewriteEngine on RewriteCond %{HTTPS} =off RewriteRule ^ - [E=useProxy:0,PT] Bob -- Apache

Re: mod_proxy, mod_rewrite und SetEnvIf

2009-11-22 Thread Bob Ionescu
://www.apache.org/$1 [P] mod_proxy, um den Inhalt des fremden Servers zu holen. Und mod_proxy erwartet den gesetzten Header! mod_proxy dürfte nichts erwarten, eher der access checker. Setze die ENV per mod_rewrite: RewriteRule ^/(.*) http://www.example.com/$1 [P,E=useProxy:1] Bob

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 cove...@gmail.com wrote: On Fri, Oct 16, 2009 at 1:48 PM, Bob Schell schell...@gmail.com wrote: However, then, within the application I am using, if I logout

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

2009-10-16 Thread Bob Schell
...@gmail.com wrote: On Fri, Oct 16, 2009 at 1:05 PM, Bob Schell schell...@gmail.com 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 port 80 by commenting

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

2009-10-01 Thread Bob Ionescu
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 HTTP Server Project. See URL:http://httpd.apache.org

Re: [us...@httpd] IndexIgnore

2009-09-29 Thread Bob Ionescu
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 - The official User-To-User support forum

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

2009-09-16 Thread Bob Ionescu
Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org from the digest: users

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

2009-09-10 Thread Bob Ionescu
(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 for that username, HTTP 401 Bob

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

2009-09-03 Thread Bob Ionescu
with 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 official User

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

2009-08-12 Thread Bob Ionescu
} =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 regular) approach. Bob

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

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

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

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

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

2009-07-24 Thread Bob Ionescu
wondering if you really need SetHandler here. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

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 HTTP Server Project

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

2009-07-22 Thread Bob Ionescu
}\ (/[^?\ ]*) RewriteRule ^/ http://%{HTTP_HOST}%1 [NE,P] Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

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

2009-06-30 Thread Bob Ionescu
server startup. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org from

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

2009-06-30 Thread Bob Ionescu
) and not a per-directory configuration file?! Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

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 alijaw...@gmail.com: 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 the directory and files walk. Bob

[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
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 - The official

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
. 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 official User-To-User support forum

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

2009-05-12 Thread Bob Ionescu
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. Bob - The official User-To-User support forum

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

2009-05-11 Thread Bob Ionescu
/%{REMOTE_USER}/stats/http/$1 [L] Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

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 ro...@rs-labs.com: Bob Ionescu escribió: 2009/3/2 Roman Medina-Heigl Hernandez ro...@rs-labs.com: 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't read all-; but you

Re: ErrorDocument und ProxyErrorOverride

2009-04-16 Thread Bob Ionescu
/wartungsseite\.html)$ /Virtualhost Bob -- Apache HTTP Server Mailing List users-de unsubscribe-Anfragen an users-de-unsubscr...@httpd.apache.org sonstige Anfragen an users-de-h

Re: Language Negotiation nach Rewrite/Passenger

2009-03-11 Thread Bob Ionescu
? Bob -- Apache HTTP Server Mailing List users-de unsubscribe-Anfragen an users-de-unsubscr...@httpd.apache.org sonstige Anfragen an users-de-h...@httpd.apache.org --

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

2009-03-11 Thread Bob Ionescu
conflict with the Redirect directives provided by mod_alias, use mod_alias for such a simple redirection instead of mod_rewrite: Redirect 301 /othersite http://myotherwebsite.com Bob - The official User-To-User support forum

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

2009-03-02 Thread Bob Ionescu
with another location section: Location / /Location Location /register.html Order deny,allow Allow from all Satisfy any /Location Bob - The official User-To-User support forum of the Apache HTTP Server Project. See

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

2009-02-16 Thread Bob Ionescu
checks the host header. You're redirecting to the same host (www.saddlebrook.com), why should the host header be different? It should match against your RegEx if the host www.saddlebrook.com was requested, of course. Bob - The official

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

2009-02-10 Thread Bob Ionescu
-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 URL:http://httpd.apache.org/userslist.html

Re: Verzeichnisse, Pfade in der URL

2009-02-03 Thread Bob Ionescu
wertest r-uri aus?), sollte diesem path-info egal sein. Bob -- Apache HTTP Server Mailing List users-de unsubscribe-Anfragen an users-de-unsubscr...@httpd.apache.org sonstige Anfragen an users-de

Re: Verzeichnisse, Pfade in der URL

2009-02-02 Thread Bob Ionescu
geben, ja. Bob -- Apache HTTP Server Mailing List users-de unsubscribe-Anfragen an users-de-unsubscr...@httpd.apache.org sonstige Anfragen an users-de-h...@httpd.apache.org --

Re: Verzeichnisse, Pfade in der URL

2009-02-02 Thread Bob Ionescu
Am 2. Februar 2009 18:07 schrieb Manfred Rebentisch mrebenti...@comparat.de: Hallo Bob, ich sehe, dass Deine Hinweise für mich zu einer perfekten Lösung führen können. Aber da SetHandler einiges verändert, wie Du richtig anmerkst, ist das eine aufwendigere Programmierung. Ich möchte dazu noch

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

2009-02-02 Thread Bob Ionescu
2009/2/2 Matt McCutchen m...@mattmccutchen.net: 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 against

Re: Verzeichnisse, Pfade in der URL

2009-02-01 Thread Bob Ionescu
, mod_autoindex etc.) funktioniert dann natürlich auch nicht mehr; das müsste dein Handler dann berücksichtigen, den du dann am besten per SetHandler involvierst. Bob -- Apache HTTP Server Mailing List users-de

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

2009-02-01 Thread Bob Ionescu
is different. Two different setups - two different intentions about overriding the parent configuration and the inheritage of the rules. Bob - The official User-To-User support forum of the Apache HTTP Server Project. See

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

2009-01-23 Thread Bob Ionescu
] Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org from the digest: users

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

2009-01-22 Thread Bob Ionescu
: RewriteCond $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 URL:http://httpd.apache.org/userslist.html for more info

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

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

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

2009-01-13 Thread Bob Ionescu
2009/1/13 Marcin w...@saepia.net: 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 to add the [PT] flag? Bob

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

2009-01-12 Thread Bob Ionescu
2009/1/12 Michael Ludwig m...@as-guides.com: 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/sections.html#mergin

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

2009-01-12 Thread Bob Ionescu
2009/1/12 Michael Ludwig m...@as-guides.com: 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 refer to the merging, Yes, merging

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

2009-01-11 Thread Bob Ionescu
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 forum of the Apache HTTP Server Project. See URL:http

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

2009-01-09 Thread Bob Ionescu
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 of the Apache

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

2009-01-09 Thread Bob Ionescu
-1.3 I would call 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

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

2009-01-09 Thread Bob Ionescu
/eumel /home/milu/www/eumel/www Directory .. The PT flag changes r-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 URL:http

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

2008-12-29 Thread Bob Ionescu
of 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 URL:http://httpd.apache.org/userslist.html for more

Re: [us...@httpd] RewriteRule

2008-12-22 Thread Bob Ionescu
). Bob - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org from the digest

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

2008-12-22 Thread Bob Ionescu
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 Project. See URL:http://httpd.apache.org/userslist.html for more info

Re: https-Umleitung fuer authentifizierte Seiten funktioniert nicht richtig

2008-12-17 Thread Bob Ionescu
Redirect auf https. Unter unter %{HTTPS} =on nutzt du ein Rewrite (also intern) auf htmlx und sicherst htmlx ab. Nun ja, das ist nicht unbedingt das Wahre, oder? Bob - To unsubscribe, e-mail: users-de-unsubscr...@httpd.apache.org

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

2008-12-15 Thread Bob Ionescu
2008/12/15 Pavel Ustyugov p.ustyu...@inets.ru: 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.

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

2007-12-10 Thread Bob Hartung
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 URL:http://httpd.apache.org

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 enough for me

[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 URL:http://httpd.apache.org/userslist.html for more info. To

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

[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 URL:http

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 or forums? Bob

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 redirect all FQDN to your

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

  1   2   >