Re: [users@httpd] apache 2.4.29 mod_unique_id UNIQUE_ID length change from 24 to 27 characters

2018-02-27 Thread Christian Folini
gt;be 27 characters long. Yes, I noted that one too. Had to redo a couple of aliases to parse the logs. There is a note about a change to mod_unique_id in the changelog, but it fails to mention the format change. Ahoj, Christian Folini -- There are two primary choices in life: (1) To accep

[users@httpd] Open Position: Webserver Engineer in Switzerland

2018-02-01 Thread Christian Folini
bout the personality than the certs. Also, decent German active and passive is a must (alternatively, native French speaker with very good passive German skills). If you are interested in this position, then please get in touch via mail to christian.fol...@netnea.com. Best, Christian --

[users@httpd] Apache + PHPCGI

2017-12-07 Thread Christian Cioni
gnored the file on website directory. Have you ever had this problem? Do you have any ideas? Best Regards Christian

[users@httpd] mod_dav LOCK issues

2017-08-08 Thread Christian Gruber
xcerpt): Alias /pinakos/admin /var/www/webdav/pinakos/admin DAV On AuthType Digest AuthName "webdav" AuthUserFile /etc/apache2/users.password Require valid-user Require user admin www-data has rw permissions for /var/www as well for the DavLock file. Best regards, Christian

[users@httpd] WebDAV not working with Microsoft Windows

2017-08-01 Thread Christian Gruber
quire valid-user Require user admin www-data has rw permissions for /var/www as well for the DavLock file. Best regards, Christian

Re: [users@httpd] Getting PHP-FPM working

2017-05-22 Thread Christian Hettler
Hello John, I think you should try it on an php related list. sorry, Christian On Sat, May 20, 2017 at 01:15:36PM -0400, John Iliffe wrote: > Hi Christian: > > I have been trying several things on this piece of frustration, with very > little result, but I do have some additional

Re: [users@httpd] Getting PHP-FPM working

2017-05-19 Thread Christian Hettler
Hello John, ".user.ini" is for "user-defined php.ini (.htaccess) files". It's mentioned in /etc/php5/fpm/php.ini on my plattform. It doesn't matter if it's missing. Is php-fpm configured with chroot? regards, Christian On Thu, May 18, 2017 at 10:44:

Re: [users@httpd] Getting PHP-FPM working

2017-05-18 Thread Christian Hettler
uot; If you want to serve http://your.virtual.srv/info from /httpd/iliffe/i_phpinfo.php you have to rewrite "info" first (not tested): RewriteRule ^/info$ /i_phpinfo.php [P] ProxyPassMatch "^/.*\.php(/.*)?$" fcgi://127.0.0.1:9015/httpd/iliffe/ Hope this helps

Re: [users@httpd] Getting PHP-FPM working

2017-05-17 Thread Christian Hettler
00/var/www/" enablereuse=on " In your environment you can request http://your.server/i_phpinfo.php regards, Christian On Tue, May 16, 2017 at 12:05:06PM -0400, John Iliffe wrote: > Hi Eric: > > I'm a bit slow-witted I guess, in any event, I now have strace installed &

Re: [users@httpd] Getting PHP-FPM working

2017-05-16 Thread Christian Hettler
hello John, Is ChrootDir activated? regards, Christian On Mon, May 15, 2017 at 10:42:37AM -0400, John Iliffe wrote: > Hi Christian: > > I just noticed that you put "" around the parameters to ProxyPassMatch. > > I tried that and no change

Re: [users@httpd] Getting PHP-FPM working

2017-05-15 Thread Christian Hettler
://127.0.0.1:9015/httpd/iliffe/$1 regards, Christian On Sat, May 13, 2017 at 03:43:08PM -0400, John Iliffe wrote: > I'm not sure is this is the correct list to post these questions to, since > I now have things isolated to a single module in PHP-FPM, so please > redirect me if nec

[users@httpd] Balancing between members with identical route

2017-03-26 Thread Christian Georg
Hi all, we are using Apache as reverse proxy for TLS offloading and routing REST Requests. Our user data is split into two backend instances, where only one of the instances can serve the data for each user. Each instance is served by two (redundant) webservices and it does not matter which web

[users@httpd] Question on correlation bewteen timeout types (Acquire, connection, proxytimeout and timeout)

2016-06-24 Thread Christian Georg
Hi all, I am currently trying to understand the different timout parameters a bit better and how they interact. We are using apache httpd 2.4 mod_proxy on a centos system as a reverse proxy with mod_proxy_balancer. Here is the relevant section from our setup: Define CONNECTION_OPTIONS "min=10

Re: [users@httpd] Rewrite domain to language specific page but no address bar redirection

2016-03-30 Thread Christian Hettler
EST_URI} !^/fr/.*$ > RewriteRule ^(.*)$ /fr/$1 [PT,L] > > RewriteCond %{HTTP_HOST} ^lang-fr\.hostname\.com$ [NC] > RewriteRule ^(.*)$ - [PT,L] > > # fr-lang > BTW: do you know mod_macro? It may improve the administion of your config for different lang. Christian > &g

Re: [users@httpd] Rewrite domain to language specific page but no address bar redirection

2016-03-29 Thread Christian Hettler
did you check the flag [PT] for RewriteRule? Christian On Fri, Mar 25, 2016 at 04:27:46PM +0200, Alexandru Duzsardi wrote: > I tested a bit more , and unfortunately it breaks somewhere > Probably I should have mentioned that the path’s after ….hostname.com/ are > not always physical

[users@httpd] Logging an masqueraded header in Apache 2.4

2015-12-16 Thread Christian Georg
Hi all, I am looking for a solution to masquerade/anonymize data I am writing to the acccess log on my proxy. For debugging purposes we need to trace data based on the x-auth header. As this header contains critical data I do not want to enable logging of the full header. Instead I am looking

Re: [users@httpd] reverse proxy wishlist

2015-12-07 Thread Christian Georg
Hi Jim, Here are a couple of suggestions, although I am not sure whether this is implemented in mod_proxy or one of the supporting modules. - request routing based on custom headers and patterns. I am currently using conditional url rewrites but I think the matching would be more efficient and

Re: [users@httpd] Certificate check on Apache reverse proxy with upstream SSL

2015-12-07 Thread Christian Georg
was a first attempt prom a fellow member to help out .. i just didnt get it .. On Wed, Dec 2, 2015 at 4:29 PM, Christian Georg mailto:m...@christiangeorg.de>> wrote: Hi all, I wanted to implement certificate pinning on an upstream SSL connection of a reverse proxy but I am struggling with

[users@httpd] Certificate check on Apache reverse proxy with upstream SSL

2015-12-02 Thread Christian Georg
Hi all, I wanted to implement certificate pinning on an upstream SSL connection of a reverse proxy but I am struggling with the setup. Please let me know where I am going wrong or if the expected setup should work. My setup is as follows: Multiple local applications ---HTTP via localhost ---> A

AW: [users@httpd] If statement evaluating an http header against a pattern is always true even though it should not

2015-11-04 Thread Christian Georg
ontext for Define. On Wed, Nov 4, 2015 at 7:41 AM, Christian Georg wrote: > Hi all, > > > I am running an apache 2.4.7 on CentOS 6.7 > > I am trying to perform request routing within a reverse proxy based on the > x-auth header, but for some reasons the if and elseif statements

[users@httpd] If statement evaluating an http header against a pattern is always true even though it should not

2015-11-04 Thread Christian Georg
Hi all, I am running an apache 2.4.7 on CentOS 6.7 I am trying to perform request routing within a reverse proxy based on the x-auth header, but for some reasons the if and elseif statements are alwyas evalutaing to true. Here is the part from the config. This is contained in the virtual ho

Re: [users@httpd] matching when should match

2015-07-24 Thread Christian Hettler
hello Andy, one possible solution to your problem will be an additional VirtualHost on port 80 for server-status. Christian -- asknet AG * Vincenz-Priessnitz-Str. 3 * D-76131 Karlsruhe fon: +49 721 96458 6445 * fax: +49 721 96458 9445 * web: http://www.asknet.com executive board: Tobias

Re: [users@httpd] mod_headers: REQUEST_URI for static files

2015-06-08 Thread Christian Weiske
#x27;<http://example.org%{ORIGINAL_URI}e> This does also give me "null" for static files, while it does work for files handled by FastCGI: > $ curl -I www.bogo/tagebuch/ > HTTP/1.1 200 OK > Link: <http://example.org(null)> -- Regards/Mit freundlichen Grüßen Christian Weiske -=≡ Geeking around in the name of science since 1982 ≡=- signature.asc Description: PGP signature

Re: [users@httpd] mod_headers: REQUEST_URI for static files

2015-06-07 Thread Christian Weiske
-I example.org/ ... Link: <http://example.org/index.htm>; rel="self" But I do not get the original request URI ("/" only), which is what I'm looking for. -- Regards/Mit freundlichen Grüßen Christian Weiske -=≡ Geeking around in the name of science since 1982 ≡=- signature.asc Description: PGP signature

Re: [users@httpd] mod_headers: REQUEST_URI for static files

2015-06-06 Thread Christian Weiske
rite rule suggestion. I fail to get a response header set via an rewrite rule based on the REQUEST_URI variable. Could someone please explain how to do that? -- Regards/Mit freundlichen Grüßen Christian Weiske -=≡ Geeking around in the name of science since 1982 ≡=- signature.asc Description: PGP signature

Re: [users@httpd] mod_headers: REQUEST_URI for static files

2015-06-06 Thread Christian Weiske
a rewriterule. "RewriteEngine On" is already set. But thanks for the hint; I'll try the rewrite rule suggestion. -- Regards/Mit freundlichen Grüßen Christian Weiske -=≡ Geeking around in the name of science since 1982 ≡=- signature.asc Description: PGP signature

[users@httpd] mod_headers: REQUEST_URI for static files

2015-06-06 Thread Christian Weiske
ubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#rfc.section.4 -- Regards/Mit freundlichen Grüßen Christian Weiske -=≡ Geeking around in the name of science since 1982 ≡=- signature.asc Description: PGP signature

[users@httpd] Apache recycle after updato to 2.4.12

2015-03-08 Thread Christian Cioni
MaxRequestWorkers 1500 MaxConnectionsPerChild 0 -- Saluti Christian Cioni Technical Department Aruba.it <http://www.aruba.it> http://www.aruba.it N° diretto: 0575/1939143 N° centralino: 0575/0505 N° fax: 0575/862300 MailTo: <mailto:chr

[users@httpd] R: HTTP 2.4.4 graceful

2013-06-26 Thread Christian Cioni
Thanks to all, But the problem was a mismatch configuration between httpd.conf (“PidFile”) and init. Christian Da: David Guerra [mailto:imdavidgue...@gmail.com] Inviato: mercoledì 26 giugno 2013 03:50 A: users@httpd.apache.org Oggetto: Re: [users@httpd] HTTP 2.4.4 graceful Is

[users@httpd] R: HTTP 2.4.4 graceful

2013-06-25 Thread Christian Cioni
Pratically, the pid number in the httpd.pid file, is not updated. Any idea? Christian Da: Christian Cioni [mailto:christian.ci...@staff.aruba.it] Inviato: giovedì 20 giugno 2013 17:00 A: users@httpd.apache.org Oggetto: [users@httpd] HTTP 2.4.4 graceful Hi, after the update from

[users@httpd] HTTP 2.4.4 graceful

2013-06-20 Thread Christian Cioni
3014 3067 3107 3433 5303 13531 is running... any idea? -- Saluti Christian Cioni Technical Department Aruba.it <http://www.aruba.it> http://www.aruba.it N° diretto: 0575/1939143 N° centralino: 0575/0505 N° fax: 0575/862300

[users@httpd] R: Mod_rewrite and DirectoryIndex Issue

2012-10-04 Thread Christian Cioni
In this moment, I must delete/rename all index files, in the DocumeRoot folder, that matching with the core DirectoryIndex directive. -Messaggio originale- Da: Eric Covener [mailto:cove...@gmail.com] Inviato: venerdì 5 ottobre 2012 00:14 A: users@httpd.apache.org Oggetto: Re: [users@httpd

[users@httpd] Mod_rewrite and DirectoryIndex Issue

2012-10-04 Thread Christian Cioni
plicate the behavior of Apache 2.2? Christian - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Load Balancer with HTTPS

2011-03-08 Thread Christian Pascher
So if I only want that people can access http://example.com and https://example.com and all the subpages I don't need it? (I don't have any redirect statement in my configs) If I would activate RequestHeader set Front-End-Https "On" I need all the SSL config stuff also at the back end servers?

Re: [users@httpd] Load Balancer with HTTPS

2011-03-08 Thread Christian Pascher
Is this necessary? I would also have to configure HTTPS also on the back end servers, if I use this? I thought, the web browser already uses a secure connection to the load balancer, so i don't need HTTPS at the back end. Am 2011-03-08 22:50, schrieb Daniel Holth: The header allows a properly c

[users@httpd] Load Balancer with HTTPS

2011-03-08 Thread Christian Pascher
Hi, I have a Apache Webserver with 2 Apache Backend-Servers. It is possible to access webpages over HTTPS (configured on the loadbalancer). It all works very well but yesterday I read something about changing the HTTP-Header: RequestHeader set Front-End-Https "On" Do I need this? Regards,

Re: [users@httpd] Apache Reverse Proxy

2011-01-21 Thread Christian Pascher
So, if I want to provide HTTPS connections, it is possible to use a Apache Server as loadbalancer? And how do I configure that? Chris Am 19.01.2011 23:44, schrieb Jeroen Geilman: On 1/18/11 10:29 PM, Christian Pascher wrote: Hi, I have a topology with two apache webservers. I want to set up

[users@httpd] Apache Reverse Proxy

2011-01-18 Thread Christian Pascher
Hi, I have a topology with two apache webservers. I want to set up a new server as a reverse proxy with caching and load balancing. As far as I know, this works fine with apache and I don't need extra software like squid. Am I right? Is it possible, that the servers can use both, HTTP and HTT

Re: [us...@httpd] Custom authentication?

2011-01-05 Thread Christian Hettler
s like Range requests won't be possible without extra work). > > Has anyone had any experience with this? What is the best way to proceed? > Any help anyone could give would be very much appreciated :) > > —Oliver Hello Oliver, do you know mod_auth_token? Christian -- asknet AG

Re: [us...@httpd] Which version of OpenSSL should be used to build Apache 2.2.16?

2010-09-13 Thread Robert Christian
On Sep 13, 2010, at 4:25 PM, Robert Christian wrote: > >> Apache 2.2.16 is currently the "best available version" of the HTTP Server. >> I made some changes to the source and need to recompile with OpenSSL. My >> question is, should I use OpenSSL 0.9.8o or OpenSSL

[us...@httpd] Which version of OpenSSL should be used to build Apache 2.2.16?

2010-09-13 Thread Robert Christian
*Apache 2.2.16 is currently the "best available version" of the HTTP Server. I made some changes to the source and need to recompile with OpenSSL. My question is, should I use OpenSSL 0.9.8o or OpenSSL 1.0.0a? The latter is a more recent, major release, but Apache couples HTTPD 2.2.16 with OpenSSL

Re: [us...@httpd] High load apache

2010-09-08 Thread Christian Wittwer
I guess you can, beside from all the apache tuning, speed up your setup with two components. 1. Use a php accelerators 2. Run a http accelerator like varnish in front of the apache for all the static files 2010/9/8 luis medrano : > what this modules do? > > On Wed, Sep 8, 2010 at 1:30 PM, Paras pr

[us...@httpd] How much backend connections with mod_proxy and multiple VirtualHost

2010-09-06 Thread Christian Wittwer
that? I have a ServerLimit of 1024. Does this mean that apache opens 1024 x 40 (virtualhosts, each has a proxypass) = 40960 connections to my tomcat? Regards, Christian - The official User-To-User support forum of the Apache HTTP Serv

Re: [us...@httpd] setenvif and mod_authnz_ldap

2010-07-03 Thread Christian Unger
On 02.07.2010, at 13:46, Eric Covener wrote: > On Fri, Jul 2, 2010 at 2:50 AM, Christian Unger > wrote: >> >> On 01.07.2010, at 16:12, Eric Covener wrote: >> >>> On Thu, Jul 1, 2010 at 9:56 AM, Christian Unger >>> wrote: >>>> &g

Re: [us...@httpd] setenvif and mod_authnz_ldap

2010-07-01 Thread Christian Unger
On 01.07.2010, at 16:12, Eric Covener wrote: > On Thu, Jul 1, 2010 at 9:56 AM, Christian Unger > wrote: >> >> Hi there, >> >> I'd like to know whether it is possible to check a request for a string via >> regex, store this into an envvar and match an

[us...@httpd] setenvif and mod_authnz_ldap

2010-07-01 Thread Christian Unger
Order allow,deny Allow from all __ cu christian unger - 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

AW: AW: [us...@httpd] Apache memory hog

2009-04-03 Thread Domsch, Christian (IZLBW Extern)
This is only true, if you dont have a real memory leak. -Ursprüngliche Nachricht- Von: André Warnier [mailto:a...@ice-sa.com] Gesendet: Freitag, 3. April 2009 15:55 An: users@httpd.apache.org Betreff: Re: AW: [us...@httpd] Apache memory hog Domsch, Christian (IZLBW Extern) wrote: >

AW: [us...@httpd] Apache memory hog

2009-04-03 Thread Domsch, Christian (IZLBW Extern)
o how Apache manages memory. We didnt went into the details so I cant tell you more. Should search the documentation. Anyway this shouldnt be related to the problem that causes the memory leak. Adrian Marsh ha scritto: Hi Christian, Do you think you could ask them to see if

AW: [us...@httpd] Apache memory hog

2009-04-03 Thread Domsch, Christian (IZLBW Extern)
Hi Adrian, no they didn't resolve these problems yet. In fact they don't know which part exactly is causing it. The thing with ssl is that due to security reasons disabling of ssl is no option. Christian -Ursprüngliche Nachricht- Von: Adrian Marsh [mailto:adrian.ma...@ubi

AW: [us...@httpd] Apache memory hog

2009-04-03 Thread Domsch, Christian (IZLBW Extern)
A little addon, when the authentification was reduced to .htaccess the memory leeks were gone. So we guessed there were problems in the authentification modules. -Ursprüngliche Nachricht- Von: Domsch, Christian (IZLBW Extern) [mailto:christian.dom...@iz.bwl.de] Gesendet: Freitag, 3

AW: [us...@httpd] Apache memory hog

2009-04-03 Thread Domsch, Christian (IZLBW Extern)
Hello. A client of our company has similar issues. They run SLES 10 with apache 2.2.x and the newest subversion 1.5.x and also use https. For authentication they use winbind and not ldap. They too have the problem, that the apache processes take up a lot of cpu cycles and use up the ram to the

Re: [us...@httpd] Mangled my Virtual Hosts

2009-03-26 Thread Christian Buczek
On Thu, 26 Mar 2009 09:58:51 -0500, Justin Pasher wrote: > Joseph Morgan wrote: >> I have somehow mangled my virtual hosts.. or so I think. I have two web >> sites http://www.ProSportsResumes.com, and >> http://www.VideoFortWorth.com, among others hosted on the same machine. >> If you visit http:

Re: AW: [us...@httpd] Mangled my Virtual Hosts

2009-03-26 Thread Christian Buczek
> Christian Buczek wrote: >> >> *Von:* Joseph Morgan [mailto:josephmmor...@hotmail.com] >> *Gesendet:* Donnerstag, 26. März 2009 03:21 >> *An:* users@httpd.apache.org >> *Betreff:* [us...@httpd] Mangled my Virtual Hosts >> >> I have somehow mangled my

AW: [us...@httpd] Mangled my Virtual Hosts

2009-03-26 Thread Christian Buczek
.. Hope one of these ideas works, Greats, Christian Buczek smime.p7s Description: S/MIME cryptographic signature

[us...@httpd] Configuration of SVN Mod from svn.apache.org

2009-02-09 Thread Domsch, Christian (IZLBW Extern)
this mailing list. I would be very glad, if someone can help me with this or even point me in the right direction. Thanks in advance, Christian Domsch

Re: [EMAIL PROTECTED] Not logging certain requests

2008-09-27 Thread Christian Lerrahn
On Thu, 25 Sep 2008 20:54:10 +0200 Davide Bianchi <[EMAIL PROTECTED]> wrote: > Christian Lerrahn wrote: > > is there a way to configure Apache as to not log requests from > > certain IP addresses? > > Yes, conditional logging is what you're looking for. &g

[EMAIL PROTECTED] Not logging certain requests

2008-09-25 Thread Christian Lerrahn
heers, Christian - 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: [EMAIL PROTECTED] " from the digest: [EMAIL P

Re: [EMAIL PROTECTED] Problem: Reverse Proxy Should Use a Specific IP(v6) Address on an Multihomed Interface

2008-08-06 Thread Christian Felsing
s used by rproxy. Christian Krist van Besien schrieb: This is most likely an operating system issue. You have to tell your server to route packets for your IPv6 hosts over the 1) interface. - The official User-To-User support for

[EMAIL PROTECTED] Problem: Reverse Proxy Should Use a Specific IP(v6) Address on an Multihomed Interface

2008-08-05 Thread Christian Felsing
ad:beef::2 which would be desired source IP address. Everything else works as expected. best regards Christian Felsing - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist

Re: [EMAIL PROTECTED] put method cgi script or webdav?

2008-06-28 Thread Christian Huldt
Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Christian Huldt Solvare +46704612207 begin:vcard fn:Christian Huldt

[EMAIL PROTECTED] getting rid of /tmp/aprxxx

2008-06-26 Thread Christian Huldt
es to envvars help. Apache is configured with: --enable-proxy --enable-proxy-http --enable-ident --enable-dav --enable-dav-fs --enable-dav-lock --enable-rewrite I guess it is related to the proxy, dav or rewrite modules, but any clue would be appreciated. -- Christian Huldt Solvare +467046

[EMAIL PROTECTED] Apache 2.0 support for huge files (>2 GB) on 64 bit platform

2008-06-24 Thread Christian Mailer (Apache-Support)
bit platform as well? Thanks for any help. Christian - 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: [EMAIL PROTECTED

[EMAIL PROTECTED] Request Filter

2008-06-03 Thread living liquid | Christian Meisinger
i try to write a filter which can block request. i copied and modified mod_authn_dbd which has already some SQL stuff. my problem is that i can't get any configuration settings. WHATEVERRequestConfig->ipCheck should be a string to a SQL query. WHATEVERIPCheckPrepare() is called. however in WHATE

Re: [EMAIL PROTECTED] [OT] Solaris + Apache 2.2 / PHP 5 cluster config help

2008-05-19 Thread living liquid | Christian Meisinger
Hi all, I know that bits and pieces of high-load configuration questions have been posted to this list ([EMAIL PROTECTED]) and am CC-ing the mod_perl folks (since I know there are a bunch of knowledgeable people on the subject lurking there, but please post responses to [EMAIL PROTECTED]), but

Re: [EMAIL PROTECTED] apache install error

2008-05-01 Thread Christian Lerrahn
even though port 80 is not in use. However, this could well be a secondary effect. Cheers, Christian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for

Re: [EMAIL PROTECTED] Streamlining Apache Modules

2008-02-24 Thread Christian Folini
r the other until the site works as expected. Now as for "might required". That really depends on your setup. A brief looked good to me. regs, Christian -- Christian Folini, Swiss Post IT, Unix / Apache Engineering +41 (0)58 338

Re: [EMAIL PROTECTED] mod_rewrite

2008-02-13 Thread Christian Folini
riteLogLevel 2 RewriteLog "/var/log/apache2/rewrite.log" RewriteCond %{SERVER_PORT} ^80$ RewriteRule /pagamento/boleto - [last] RewriteCond %{SERVER_PORT} ^80$ RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [redirect,last] -- Christian Folini, Swiss Post IT, Unix / Apache Enginee

Re: [EMAIL PROTECTED] ProxyPassReverse: Permission Denied

2008-02-12 Thread Christian Folini
;t have permission to access /foo/ on this server" It's not your proxy statements. It's in the rest of your server configuration. Check for Allow/Deny statements or any other authentication. Christian > > Do you have any ideas? > > > -- > View this message in c

Re: [EMAIL PROTECTED] Mod rewrite - can it tell if a requested file exists

2008-02-07 Thread Christian Folini
Hi Lance, Have you checked the documentation? http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond Christian On Fri, Feb 08, 2008 at 12:47:52AM -0600, Campbell, Lance wrote: > Apache 2.2 > > > > I know it is possible to chain mod rewrite rules. Is it poss

Re: [EMAIL PROTECTED] 2.2 proxy connection pool gone missing (?)

2008-02-01 Thread Christian Folini
ng an existing, preopened connection would save the tcp handshake and optionally the more expensive ssl handshake. That is what I am after actually. But as mentioned in my previous message: even the most simple setup fails to work as advertised. regs, Christian -- Christian Folini, Swi

[EMAIL PROTECTED] 2.2 proxy connection pool gone missing (?)

2008-02-01 Thread Christian Folini
ppreciated. regards, Christian -- Christian Folini, Swiss Post IT, Unix / Apache Engineering +41 (0)58 338 79 96 [EMAIL PROTECTED] - The official User-To-User support forum of the Apache HTTP Server Project. See htt

Re: [EMAIL PROTECTED] ProxyTimeout and mod_rewrite proxy request

2008-01-30 Thread Christian Folini
parts you really need. Takes a bit of time, but usually, it works - and teaches you a lot about apache. Christian -- Christian Folini, Swiss Post IT, Unix / Apache Engineering +41 (0)58 338 79 96 [EMAIL PROTECTED] ---

Re: [EMAIL PROTECTED] ProxyTimeout and mod_rewrite proxy request

2008-01-29 Thread Christian Folini
8080 and on the client: netcat hostX 80 < /tmp/get-request Then run tcpdump to see all packets flying between the hosts/ports. I suggest you cut down your config as much as you can and make sure there are no other timeout settings anywhere. regs, Christian On Wed, Jan 30, 2008 at

Re: [EMAIL PROTECTED] Apache Hangs.. Server-Status shows all Reading

2008-01-28 Thread Christian Köberl
Hi! Jérôme Etévé-2 wrote: > > I've got here exactly the same problem, but without any php modules. My > server serves only static resources and It's flooded with reading state > request sometime. > We've also got the same problem and as it seems the Apache foundation has the same problem as w

Re: [EMAIL PROTECTED] another instance of apache

2008-01-27 Thread Christian Folini
iles, lock-files, mutex-files are not interferring. Launch a 2nd apache with this 2nd config file. Done. Regs, Christian -- Christian Folini, Swiss Post IT, Unix / Apache Engineering +41 (0)58 338 79 96 [EMAIL PROTECTED] -

Re: [EMAIL PROTECTED] Authentication Module

2008-01-27 Thread Christian Folini
unds like mod_auth_tkt: http://www.openfusion.com.au/labs/mod_auth_tkt/ There is some additional info at: http://pplusdomain.net/cgi-bin/blosxom.cgi This module is very lightweight and a joy to use. Regards, Christian -- Christian Folini, Swiss Post IT, Unix / Apache Engineering

Re: [EMAIL PROTECTED] Reverse proxy security risks

2008-01-23 Thread Christian Folini
. (This can be adjusted, but could bring more false positives). Regs, Christian On Wed, Jan 23, 2008 at 11:24:18AM -, Paul Cocker wrote: > We have a helpdesk system which is accessed via HTTPS. However, the web > interface is handled via Apache Tomcat, which is shipped as part of the >

Re: [EMAIL PROTECTED] Question about virtual hosts and wildcards

2008-01-16 Thread Christian Folini
er they'll work in the domain > place. Okay. I saw it leaves some doubt in this regard. > Guess I'll have to try it and see. yep. If it works, you might want to give feedback to the apache documentation project. regs, Christian -- Christian Folini, Swiss Post IT,

Re: [EMAIL PROTECTED] Question about virtual hosts and wildcards

2008-01-16 Thread Christian Folini
iment and try it out, and am hoping to gain some insight here. I doubt you should go straight to the production server. Your test box need not support your full production setup. Any box running apache would already help here. And then manipulate the hosts-file on the client and see what happens.

Re: [EMAIL PROTECTED] URL for Archive Searching of this List

2008-01-16 Thread Christian Folini
Hi there, http://marc.info/?l=apache-httpd-users works fine with me. good luck, Christian On Wed, Jan 16, 2008 at 05:48:44PM +0530, kernel.2k5 wrote: > hello All , > > kindly let me know any URL with search facility , so i will first search > old POSTs for any qery and then only w

Re: [EMAIL PROTECTED] Re: Apache ACL

2008-01-15 Thread Christian Folini
attacker could use this behaviour to scan a site. regs, Christian - 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: [EMAIL PROTECTED] Serving of Images taking time

2008-01-15 Thread Christian Folini
you give it a try and reduce the number on a test box and see how this affects the time. Apache Bench (ab) is your friend. Christian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.ap

Re: [EMAIL PROTECTED] How can I block International users?

2008-01-13 Thread Christian Folini
.htaccess. Christian > -- > -ste > > - > 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: [EMAIL PROTECTED] Where can I find a tutorial for writing apache 2.0.x modules

2008-01-08 Thread Christian Folini
On Mon, Jan 07, 2008 at 09:58:25AM -0600, Campbell, Lance wrote: > I am looking for a web tutorial for writing apache 2.0.x modules. Does > anyone have a reference they could give me? Get the Apache Modules Book by Nick Kew. regs, Chr

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Christian Folini
tory] [-f file] [-C "directive"] [-c "directive"] [-k start|restart|graceful|stop] [-v] [-V] [-h] [-l] [-L] [-t] [-S] It's the graceful you are after. Christian - The official User-To-User suppo

Re: [EMAIL PROTECTED] How to rid a pest?

2007-12-16 Thread Christian Folini
You are stopping them inside apache now. Next obvious step is a firewall. Either on the server on a dedicated box in front of it. regs, Christian On Sat, Dec 15, 2007 at 12:57:17PM -0800, Charles Michener wrote: > I have a couple of spider bots hitting my server that I do not wish to h

Re: [EMAIL PROTECTED] Running 2 VirtualHosts under different Users.

2007-12-13 Thread Christian Folini
Hi there, I'd work with multiple apaches and possibly a proxy setup, where the code writing one sits behind in the 2nd layer. regs, Christian On Fri, Dec 14, 2007 at 12:22:05PM +0530, Gaurav Pruthi wrote: > Hi, > > I have 2 virtualhosts configured under apache. Apache runs

Re: [EMAIL PROTECTED] How to resist user click abuse in apache?

2007-12-13 Thread Christian Folini
try mod_qos. It does exactly that. On Thu, Dec 13, 2007 at 01:31:58PM +0300, Artem Kuchin wrote: > Here is the situation. Heavy db driven site takes about 1-1.5 second > to load some pages. While loading such page it takes a lot of memory > and cpu. It is not a problem it is used normally, but so

Re: [EMAIL PROTECTED] response time measurement at apache server

2007-12-12 Thread Christian Folini
values. regs, Christian - 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: [EMAIL PROTECTED] " from the dig

Re: [EMAIL PROTECTED] Analyzing access and error logs

2007-12-09 Thread Christian Folini
/en.wikipedia.org/wiki/Web_log_analysis_software I found that Ivan Ristic's logscan is missing. I have added it to that list. http://www.apachesecurity.net/tools/index.html Christian P.S. Analysing error logs is more difficult to do. You may want to have a look at

Re: [EMAIL PROTECTED] 'Deny from' implications

2007-12-09 Thread Christian Folini
dreds? Thousands? Naughty IP's sounds dynamic. Not sure Apache is the best place to block them. Ever thought about a firewall? Otherwise: Try to find out with apache bench (ab). It's really quite simple. If you stick

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-09 Thread Christian Lerrahn
On Sun, 9 Dec 2007 11:06:31 -0500 "Eric Covener" <[EMAIL PROTECTED]> wrote: > On Dec 9, 2007 1:09 AM, Christian Lerrahn <[EMAIL PROTECTED]> wrote: > > > RewriteRule (.*/)/+(.*) $1$2 [R=permanent,L] > > > > fixes almost all of my problems. The onl

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-08 Thread Christian Lerrahn
On Sat, 8 Dec 2007 15:40:09 +0100 Torsten Foertsch <[EMAIL PROTECTED]> wrote: > On Sat 08 Dec 2007, Christian Lerrahn wrote: > > > RewriteEngine On > > > RewriteRule (.*)//+(.*) $1$2 [R=permanent,L] > > > > Thanks for that. I'm sorry to still bother.

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-08 Thread Christian Lerrahn
On Fri, 7 Dec 2007 22:38:33 -0500 "Joshua Slive" <[EMAIL PROTECTED]> wrote: > On Dec 7, 2007 8:18 PM, Christian Lerrahn <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a site that for some reason got indexed by Google with wrong > > paths which contain too

[EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-07 Thread Christian Lerrahn
hopefully one day Google will have it right, too. I was thinking of mod_rewrite but I couldn't get it to work. However, I only can get rules that either don't seem to do anything or ones that get me into an infinite loop of redirects. Can anybody give me a hint? Cheers,

Re: [EMAIL PROTECTED] Logging question

2007-12-03 Thread Christian Folini
think they have found a solution though. I gave up somewhere along the line. regs, Christian - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info.

Re: [EMAIL PROTECTED] HTTP STATUS 304

2007-11-28 Thread Christian Folini
Hi there, no need to YELL in the subject line. But if you are really interested to learn something, then RFC 2616 Hypertext Transfer Protocol HTTP/1.1 is a good read. It does not answer all (implementation) questions, but goes to quite a length regarding 304. regs, Christian On Wed, Nov 28

Re: [EMAIL PROTECTED] SSL Reverse Proxy

2007-11-27 Thread Christian Folini
irtual host. Do it step by step and it should work. regs, Christian P.S. You should upgrade to apache 2.0/2.2. Especially for a reverse proxy. It gives you more flexibility (thanks to modules like mod_proxy_html) and possibly

Re: [EMAIL PROTECTED] 301 Redirects

2007-11-26 Thread Christian Folini
world with your real application. As a sidenote: If you run ssl, then rewrite rules hardly matter at all, as the ssl-handshake takes ages compared to a rewrite rule. just my 2 cents, Christian - The official User-To-User support

Re: [EMAIL PROTECTED] Worker process blocked when waiting for HTTPKeepAlive ??

2007-11-26 Thread Christian Folini
On Mon, Nov 26, 2007 at 09:58:22AM +0100, Gottschalch Christian wrote: > Hi List, > > short question, in apache mpm prefork, who is handling the connection ? > if i understand it right, then the apache root process dispatches a > connection to an worker process, this process is

  1   2   3   >