Re: [users@httpd] SSL setup assistance

2024-09-18 Thread j...@k6ccc.org
org Subject: Re: [users@httpd] SSL setup assistance It was thus said that the Great j...@k6ccc.org once stated: > So can someone either point me to a good step by step or walk me through > what I need to do to get this working. I had gotten the cert back then > via Let's Encryp

[users@httpd] SSL setup assistance

2024-09-18 Thread j...@k6ccc.org
onfig back to what it had been and ignored the issue for a few more years. So can someone either point me to a good step by step or walk me through what I need to do to get this working. I had gotten the cert back then via Let's Encrypt, and that was the easy part. 73 - Jim Walls

[users@httpd] httpd 2.2 to httpd 2.4 - how to avoid SSLCADNRequestPath with thousands of certs

2024-08-19 Thread J Harri
I'm migrating an application from httpd 2.2 to httpd 2.4, and the way client authentication is configured for httpd 2.2 will not work for httpd 2.4 . The application serves static files to thousands of different clients, each with their own self signed certificates. For httpd 2.2, set up was don

[users@httpd] Re: Problem Configuring httpd 2.4 to allow expired client certficates

2024-08-13 Thread J Harri
I have since found this link: https://stackoverflow.com/questions/72020602/how-to-set-ld-preload-in-systemd The difficulties getting LD_PRELOAD to work with systemd is discussed there, and it said the wrapper approach was the solution. I had already tried the other approaches discussed, with no

[users@httpd] Problem Configuring httpd 2.4 to allow expired client certficates

2024-08-12 Thread J Harri
I am working on migrating an application to httpd 2.4 on AL2023.  The application uses client certificates, which will be expiring before they can all be rotated with new expirations. I am attempting to configure httpd 2.4 to continue requiring client certificates, but change the configuration t

Re: [users@httpd] No more message

2024-04-21 Thread Gillis J. de Nijs
To unsubscribe, please follow the steps outlined here: https://httpd.apache.org/userslist.html On Sun, Apr 21, 2024 at 9:44 PM Dalibor Medvedović < dalibor.medvedo...@gmail.com> wrote: > I'm out of discussion >

RE: [users@httpd] Re: Apache server v2.4.58 - suexec issue

2024-04-08 Thread j...@k6ccc.org
2.4.59 was released a few days ago to address these... Jim -Original Message- From: "Christophe JAILLET" Sent: Monday, April 8, 2024 13:26 To: users@httpd.apache.org, "Abdullah Adnan" Subject: [users@httpd] Re: Apache server v2.4.58 - suexec issue Le 07/04/2024 à 19:55, Abdullah Adn

RE: [users@httpd] CVE-2023-38709: Apache HTTP Server: HTTP response splitting

2024-04-04 Thread Mcalexander, Jon J.
Is there a severity level for this one? Dream * Excel * Explore * Inspire Jon McAlexander Senior Infrastructure Engineer Asst. Vice President He/His Middleware Product Engineering Enterprise CIO | EAS | Middleware | Infrastructure Solutions 8080 Cobblestone Rd | Urbandale, IA 50322 MAC: F4469-01

Re: [users@httpd] Reducing redirects

2024-01-25 Thread Gillis J. de Nijs
You could consider creating a static table using RewriteMap: https://httpd.apache.org/docs/current/rewrite/rewritemap.html Rather than first doing http to https and www to non-www, consider adding the RewriteMap in the http- and www-vhosts that you have and redirecting to the final URL straight fro

Re: [users@httpd] Apache 2.5 Source Code ?

2023-11-06 Thread Gillis J. de Nijs
The Apache Software Foundation hosts many projects, of which httpd is probably the best known. If you refer to that: there is no (released) Apache httpd 2.5. The latest release is 2.4.58. Source is here . On Mon, Nov 6, 2023 at 4:40 PM Joe

Re: [users@httpd] mod_cluster in Apache 2.4.x

2023-09-21 Thread Gillis J. de Nijs
mod_cluster is open source. You can add it yourself to your Apache instance. https://www.modcluster.io/ Regards, Gillis On Thu, Sep 21, 2023 at 8:04 AM vicky chb wrote: > Hi all, > > Does Apache 2.4.x have mod_cluster module available? I checked > https://httpd.apache.org/docs/2.4/mod/ but di

[users@httpd] Need help with correlating HTTP request with a database call

2023-07-04 Thread Sudesh Gowda J
Hello everyone, I'm currently working on a project where Apache server is being used with a database. I need to find out which HTTP request maps to which database call without modifying the server code(eg., Logs). I read the documentation regarding logging and the parameters don't seem to be of any

RE: [users@httpd] Controlling access to web site based on domain name

2022-12-16 Thread j...@k6ccc.org
Brian beat me to it. Set up virtual hosts with the desired domain listed and the default (what someone will get if they access via IP) goes to your desired "wrong way to get here" page. Jim -Original Message- From: "Rose, John B" Sent: Friday, December 16, 2022 13:00 To: "users@htt

RE: [users@httpd] Re: How Do I Prevent Repetitive Hits

2022-08-25 Thread j...@k6ccc.org
On 25/08/2022 17:27, j...@k6ccc.org wrote: > Or add that IP to a blacklist in your router so your Apache server never even > sees it. Then Good Guy asked: > Is this possible if your server is in the cloud platform such as Azure, > GCP, IBM or Oracle? What is needed is a solut

RE: [users@httpd] How Do I Prevent Repetitive Hits

2022-08-25 Thread j...@k6ccc.org
Or add that IP to a blacklist in your router so your Apache server never even sees it. Jim K6CCC -Original Message- From: "John Iliffe" Sent: Thursday, August 25, 2022 09:16 To: "Apache Help" Subject: [users@httpd] How Do I Prevent Repetitive Hits For the last week we have been getti

Re: [users@httpd] Restart over reload

2022-08-24 Thread Gillis J. de Nijs
I'm not aware of a list either, but my gut says something like: adding or removing modules, changing port numbers or ip addresses and the like, require a restart. "Regular" configuration changes, like you would do in a .htaccess, or adding/removing a VirtualHost can do with a reload.

Re: [users@httpd] PCRE support for Apache Httpd 2.4.53

2022-05-30 Thread Herbert J. Skuhra
On Mon, May 30, 2022 at 05:27:10PM +0530, Shylaja P wrote: > Hi, > We used Apache* httpd-2.4.52* *with PCRE-8.44* in our project, Now I'm > trying to upgrade my project with Apache* httpd-2.4.53*, but It is failing > with pcre-config not found. > >- *Is it mandatory to use PCRE2 to upgrade to

Re: [users@httpd] mod_md questions

2022-02-27 Thread Gillis J. de Nijs
It does mention it, but I agree it's not too straightforward. https://httpd.apache.org/docs/current/mod/mod_md.html says (emphasis mine): "If Let's Encrypt can verify the ownership of the domain, the module will retrieve the certificate and its chain, store it in the local file system (see MDStore

Re: [users@httpd] Calling htdbm from another server

2022-01-12 Thread Gillis J. de Nijs
I'd probably consider using SQL/LDAP or a shared filesystem for this. Would that work? Alternatively, you could rsync between the servers, depending on how fast you want the updates to happen.

Re: [users@httpd] Allow relative paths in Directory directives?

2020-09-11 Thread Gillis J. de Nijs
Hi Erik, Couldn't you do something like this? That should work just fine, if you have your vhosts in a common structure. Alternatively, you could look at DirectoryMatch and come up with something awful that matches your structure. https://httpd.apache.org/docs/2.4/mod/core.html#directory https

[users@httpd] OCSP Status Codes

2020-08-28 Thread Richard J. Van Horn
a more informational page. Is there a OCSP status similar to SSL_CLIENT_VERIFY that I can use to redirect the user? I've looked everywhere and can't find any information. Thanks in advance. -- ---- Richard J. Van Horn

Re: [users@httpd] stop emails to tsperd...@bellsouth.net

2020-06-28 Thread Mark J Bradakis
On 6/28/20 11:13 AM, tsperd...@bellsouth.net wrote: How do I stop all emails from apache. Thank you tsperd...@bellsouth.net Are you asking how to unsubscribe from this list? mjb. - To uns

Re: [users@httpd] Please respond so I know I'm not Spam

2020-01-31 Thread Gillis J. de Nijs
Was in my spam folder, but I regularly check that. It could be due to your "NOTICE...".

Re: [users@httpd] Re: Virtual host macros and reverse proxy

2020-01-29 Thread Gillis J. de Nijs
line. On Wed, Jan 29, 2020 at 4:05 PM Tom Browder wrote: > On Wed, Jan 29, 2020 at 08:36 Gillis J. de Nijs > wrote: > > > > There's mod_macro that might be useful. I don't think it does > calculations, though, so you might need to do some things yourself. Maybe &

Re: [users@httpd] Re: Virtual host macros and reverse proxy

2020-01-29 Thread Gillis J. de Nijs
There's mod_macro that might be useful. I don't think it does calculations, though, so you might need to do some things yourself. Maybe you could indeed generate the conf files yourself and use Include

Re: [users@httpd] Apache 2.4 - 403 Forbidden: After Upgraded the Apache from 2.2.21 to 2.4.25 for all links

2019-12-04 Thread Gillis J. de Nijs
Did you read the upgrade guide at http://httpd.apache.org/docs/2.4/upgrading.html ? It outlines the changes in authorization and access control. I didn't read your configurations, but this might be a good starting point to get you going. Kind regards, Gillis

[users@httpd] compiling http-2.4.41 on linux variants

2019-09-11 Thread William J Adler
I am trying to compile http-2.4.41 and it works on Fedora 29 and Centos  7 but on Centos 6 and Ubuntu 18  the compile generates the following error: /usr/local/apache2/build-1/libtool --silent --mode=compile gcc -std=gnu99  -g -O2 -pthread  -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/h

Re: [users@httpd] Regex in ServerAlias

2019-07-18 Thread Gillis J. de Nijs
But you can do: ServerAlias www.example.com www.example.info www.example.foo.bar

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

2019-07-04 Thread Mark J Bradakis
Some of the tools here might assist in tracking down what is visible to the world and what is not. https://tools.dnsstuff.com/# mjb. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mai

[users@httpd] apache 2.4.37 + mod_ssl built as DSO is not dynamcically linking the new openssl version

2019-05-08 Thread jaiprakash j
Hi Folks, I need Help in resolving this issue that I am facing. I am using a centos7 build box that has openssl 1.0.1e-fips and I use configure command as follows: ./configure --prefix=$INSTALL_DIR \ --enable-ssl \ --enable-so \ --enable-module=so\

Re: [users@httpd] CGI scripts generating 503 error

2019-04-28 Thread Mark J Bradakis
Finally figured it out. The problem was the difference in the Apache CGI modules.  If you use prefork MPM ( Multi Processing Modul ) you need to use mod_cgi.  If you use worker MPM you need to use mod_cgid.  The reverse combinations do not work.  One will actually give you an error and not sta

[users@httpd] CGI scripts generating 503 error

2019-04-26 Thread Mark J Bradakis
So I am really having a difficult time figuring out this problem.  Tried to do some searching of the archives here, didn't come up with anything. Recently had a server die, but was in the process of replacing it at my leisure. Had to do it ASAP instead, didn't have a chance to test everything.

Re: [users@httpd] Setting Directive ServerName in VirtualHost to the full qualified domain of the request

2019-02-28 Thread Gillis J. de Nijs
The ServerName doesn't matter, since it's not used in the ProxyPass. Just make that server.de or whatever. Then create a ServerAlias *.server.de. Keep in mind that this setup allows something like a request to localhost-80.server.de which then gets proxied to localhost:80 and might serve things t

Re: [users@httpd] define variables by vhost only

2018-11-05 Thread Gillis J. de Nijs
Alternatlvely, you can just put the AddHandler in the VirtualHost directly, and not bother with the .htaccess files. On Mon, Nov 5, 2018 at 9:43 AM Hajo Locke wrote: > Hello List, > > iam looking for a way to use define to create variables limited to > vhosts (apache 2.4). > Currently i have som

Re: [users@httpd] Trouble-shooting Apache 2.2 Alias

2018-10-29 Thread Gillis J. de Nijs
ot;Alias" and "Directory" settings. They are also on a separate filesystem > from the server root and the DocumentRoot. Should we add something else? > > Thanks! > > Leam > > On 10/29/18 4:14 AM, Gillis J. de Nijs wrote: > > The only other thing I can t

Re: [users@httpd] Trouble-shooting Apache 2.2 Alias

2018-10-29 Thread Gillis J. de Nijs
The only other thing I can think of right now is that either the config is somehow not included (but in that case the Alias probably wouldn't work either), or it is before the block, which then overrides the former. All of this is assuming that you only have two blocks in your config. Anyway,

Re: [users@httpd] Trouble-shooting Apache 2.2 Alias

2018-10-26 Thread Gillis J. de Nijs
For any troubleshooting, your starting point should be the error log. It usually explains pretty well why something is forbidden. On Thu, Oct 25, 2018 at 9:52 PM Leam Hall wrote: > Following the Alias docs ( > https://httpd.apache.org/docs/2.2/mod/mod_alias.html#alias) and it's not > working. D

Re: [users@httpd] Limited Websocket connections with mod_proxy

2018-10-18 Thread Edward J. Yoon
onnections with single Apache server? 2018년 10월 18일 (목) 오후 7:25, Eric Covener 님이 작성: > On Thu, Oct 18, 2018 at 3:14 AM Edward J. Yoon > wrote: > > > > Hi, > > > > I've installed Apache2 on Unbuntu 18.04, and enabled {a2enmod rewrite > > proxy proxy_http proxy_

[users@httpd] Re: Limited Websocket connections with mod_proxy

2018-10-18 Thread Edward J. Yoon
P.S., OKay, I've increased MaxRequestWorkers = 1, However, now I can made only 386 connections. :/ On Thu, Oct 18, 2018 at 4:14 PM Edward J. Yoon wrote: > > Hi, > > I've installed Apache2 on Unbuntu 18.04, and enabled {a2enmod rewrite > proxy proxy_http prox

[users@httpd] Limited Websocket connections with mod_proxy

2018-10-18 Thread Edward J. Yoon
ch backend server can handle 60k websocket connections. But, I can made only 150 connections to Apache2 load balancer that have 4 backend server. What can I do fix this? My websocket server address is ws://52.78.219.149/1. Thanks. -- Best Regards, Edwa

Re: [users@httpd] IP address used by Apache reverse proxy?

2018-09-25 Thread Gillis J. de Nijs
I'm starting to think you don't know what you need, and we don't understand what you want. So, drop everything you (think you) know, and start over. What are you trying to do? Not how you're trying to do it, or why, but WHAT do you want to do? WHAT components are involved? I'm thinking it's al

Re: [users@httpd] How to avoid plain password in mod_ldap

2018-09-12 Thread Gillis J. de Nijs
The documentation states that you can use an executable to return the password. Since the password is read on server startup, you could make that script owned by root and give it rx permissions for root only. That should make sure no one (except root) can read your password. https://httpd.apache

Re: [users@httpd] Reverse Proxy trouble with mod_substitute

2018-09-04 Thread Gillis J. de Nijs
Yes, it is. You can't rewrite something that's gzipped, so you'd have to unzip it first, or - like you did - never have it gzipped in the first place. See also http://www.apachetutor.org/admin/reverseproxies where there's a full reverse proxy scenario configured and explained. It uses the same t

Re: [users@httpd] VirtualHost and HTTPS

2018-08-30 Thread Gillis J. de Nijs
Also see https://wiki.apache.org/httpd/NameBasedSSLVHosts As a rule, it is impossible to host more than one SSL virtual host on the > same IP address and port. This is because Apache needs to know the name of the host in order to > choose the correct certificate to setup the encryption layer. T

Re: [users@httpd] Problem with CGI script

2017-12-29 Thread Gillis J. de Nijs
DirectoryIndex contains a list of files to try, not a full path. My guess is that it's supposed to be DirectoryIndex index.cgi instead of the path. On Fri, Dec 29, 2017 at 11:05 AM, mahmood n wrote: > Hi, > > > > In one the www folders, I have an index.cgi which is a python script. > Problem is

Re: [users@httpd] if statement and ssl directives (apache 2.4)

2017-12-06 Thread Gillis J. de Nijs
Hi Adam, Simplest, in my opnion, is simplest to read and parse for a human. What's wrong with: ## One VirtualHost that does everything ServerName www.comptoir-hardware.com SSLEngine on SSLCertificateFile /etc/ssl/certs/comptoir-hardware.com.crt SSLCertificateKeyFile /etc/ssl/pr

RE: [users@httpd] Hide URL link of target

2017-08-02 Thread Berneburg, Cris J. - US
Chris Chris Chia wrote: Chris> Is there a way to hide the URL link when hover over the link Chris> and also when browser is in the process of connecting to target site. Gillis J. de Nijs replied: Gillis> Displaying the URL when hovering over the link or loading Gillis> the site

Re: [users@httpd] Hide URL link of target

2017-08-01 Thread Gillis J. de Nijs
Hi Chris, Displaying the URL when hovering over the link or loading the site is something your browser does, and not something Apache httpd has any control over. Cheers, Gillis On Tue, Aug 1, 2017 at 11:28 AM, Chris Chia wrote: > Hi > > > > Very newbie question. > > > > Is there a way to hide

Re: [users@httpd] configure apache2 on ubuntu 16.04 vps to use php-fpm is not leading to the desired outcome

2017-07-25 Thread Gillis J. de Nijs
I see you have libapache2-mod-php7.0 installed. Are you sure you disabled it? In Ubuntu you can use a2dismod to disable modules. I suspect mod_php is listed there. It's not required when you want to do fpm. On Tue, Jul 25, 2017 at 10:02 AM, Luca Toscano wrote: > Hi Dino, > > > 2017-07-23 1:3

[users@httpd] Kerberos authentication exclusion by IP address

2017-06-02 Thread Dames, Kristopher J
System: RHEL 7 Apache 2.4.6 Synopsis: My site is behind an F5 load balancer. Apache sees all requests coming from 10.10.84.8. The F5 sends the X-Forwarded-For header containing the actual client IP address. I need to attempt Kerberos auth for the entire site () for internal (X-Forwarded-For hea

[users@httpd] Revision 1692258 Availability?

2016-04-12 Thread J Harri
I need an httpd change that committed to the project's source code repository back on 2015-07-22 ( https://svn.apache.org/viewvc?view=revision&revision=1692258). I checked the source tarball for the most current release, httpd 2.4.20, downloaded from https://httpd.apache.org/download.cgi and it

Re: [users@httpd] ApacheCon NA 2016 - Important Dates!!!

2016-02-11 Thread J Lance Wilkinson
Melissa Warnkin wrote: Hello everyone! I hope this email finds you well. I hope everyone is as excited about ApacheCon as I am! I'd like to remind you all of a couple of important dates, as well as ask for your assistance in spreading the word! Please use your social media platform(s) to

[users@httpd] mod_nss ??

2015-02-24 Thread J Lance Wilkinson
This morning a webserver that I'm responsible for (but didn't have a particularly significant hand in setting up) was reporting as in a $ ps -ef | grep httpd display. This is on RHEL6 and it's Apache HTTPD 2.2 patched up the way that Red Hat does things. When I explored the logs, and e

[users@httpd] Re: apache 2.4 enable SSL for simple VirtualHost *:8843

2014-12-16 Thread J Tom Moon 79
nt problems. On Tue, Dec 16, 2014 at 4:55 PM, J Tom Moon 79 < jtm.moon.forum.u...@gmail.com> wrote: > > I'm unable to simply enable SSL for a VirtualHost using a very simple > configuration. > > I'm recently upgraded Ubuntu 12 to Ubuntu 14. apache was upgraded from

[users@httpd] apache 2.4 enable SSL for simple VirtualHost *:8843

2014-12-16 Thread J Tom Moon 79
I'm unable to simply enable SSL for a VirtualHost using a very simple configuration. I'm recently upgraded Ubuntu 12 to Ubuntu 14. apache was upgraded from 2.2 to 2.4.7 . I've checked the 2.4 docs for 2.2.->2.4 changes and reviewed my configuration scripts in depth. I can create an unencrypted V

[users@httpd] Apache 2.4 - non adoption reasons??

2014-04-10 Thread Joey J
t see any reason why anybody wouldn't want to use it but the community seems to think it's bad. What am I missing?? Current market share: http://w3techs.com/technologies/details/ws-apache/2.4/all -Joey J - To unsu

Re: [users@httpd] Available online Training/documentation

2014-02-19 Thread J LANCE WILKINSON
Can I recommend attending APACHECON (see http://www.apachecon.com/ ) to get fairly low cost training? -- J.Lance Wilkinson ("Lance") InterNet: lance.wilkin...@psu.edu Systems Design Specialist - Lead Phone: (814) 865-4870 Digital Library Technologies FAX: (814) 863-3560 E3 Paterno Library ht

RE: [users@httpd] apache caching 400 http status?

2014-02-13 Thread Anthony J. Biacco
tus); } } From: Mike Rumph [mailto:mike.ru...@oracle.com] Sent: Wednesday, February 12, 2014 4:54 PM To: users@httpd.apache.org Subject: Re: [users@httpd] apache caching 400 http status? Hello Anthony, The discussion on the caching of 503 errors in bug 55669 may apply to this email

[users@httpd] apache caching 400 http status?

2014-02-12 Thread Anthony J. Biacco
I'm running compiled apache 2.2.24 on centos 6.4 I have a URL which gets proxied to tomcat with mod_proxy_ajp. The URL in a test scenario is producing a 400 status and content using tomcat custom error pages. Said URL space is cached in apache with mod_disk_cache. Apache is caching said content an

RE: [users@httpd] apache 408 status code in 2.2.18 later

2014-01-23 Thread Anthony J. Biacco
The cause of these tends to be related to browsers that do predictive web requests to the server. The 408 happens after the unused connections time-out. The issue is also tied to RHEL 6.x and CentOS 6.x systems after a certain kernel version, I can’t remember which one off the top of my head. I h

RE: [users@httpd] Apache for Windows - forward logs to syslog server

2013-10-19 Thread Anthony J. Biacco
You can run Snare Epilog for Windows as a daemon to read your local apache log files and forward them on to a syslog server http://www.intersectalliance.com/projects/EpilogWindows/index.html You should also be able to use a Windows port of the logger utility and pipe your apache logs directly t

RE: [users@httpd] Apache on CentOS 6 -- lots of reading requests

2013-10-10 Thread Anthony J. Biacco
I'd like to resurrect the below thread as I'm seeing this on my new CentOS 6.4 (kernel 2.6.32-358.18.1.el6.x86_64)/Apache 2.2.24 (compiled) servers. Never had the problem on my CentOS 5 ones. I can't lower my timeout in apache, as I have dynamic backend content needing a 120+s timeout. Haven't fo

RE: [users@httpd] file extensions for CGI

2013-04-03 Thread Newman, Stuart J. (GSFC-444.0)[HONEYWELL TECHNOLOGY SOLUTIONS INC]
The execute bit is set. Stuart J. Newman Engineer 4; Systems Solar Dynamics Observatory (SDO)   Honeywell Technology Solutions Inc NASA/Goddard Space Flight Center Building 14, Room E222 Mail Stop 428.2

[users@httpd] file extensions for CGI

2013-04-03 Thread Newman, Stuart J. (GSFC-444.0)[HONEYWELL TECHNOLOGY SOLUTIONS INC]
a file with a ".to" extension to by a CGI script? ~~~~ Stuart J. Newman Engineer 4; Systems Solar Dynamics Observatory (SDO) Honeywell Technology Solutions Inc NASA/Goddard Space Flight Center Building 14,

Re: [users@httpd] Apache Forward Proxy with App Server Integration.

2013-03-09 Thread Anil J
HTTP based. So in this case, I was trying to understand how existing modules - mod_proxy & mod_proxy_http - functions in this context. Will they serve my purpose if I have to use HTTP interface to connect with an external server. /anil. On Thu, Mar 7, 2013 at 12:50 PM, Anil J wrote: >

Re: [users@httpd] Apache Forward Proxy with App Server Integration.

2013-03-07 Thread Anil J
27;d be better able to answer > your questions. > > On Mar 6, 2013, at 10:16 PM, Igor Cicimov wrote: > > > > > > > > > On Thu, Mar 7, 2013 at 10:53 AM, Anil J wrote: > > Hello Jim, > > > > Note that Proxy will also be communicating with Origi

Re: [users@httpd] Apache Forward Proxy with App Server Integration.

2013-03-06 Thread Anil J
Thanks Igor. I have provided comments inline. On Wed, Mar 6, 2013 at 10:16 PM, Igor Cicimov wrote: > > > > On Thu, Mar 7, 2013 at 10:53 AM, Anil J wrote: > >> Hello Jim, >> >> Note that Proxy will also be communicating with Origin Server (OS) where >> t

Re: [users@httpd] Apache Forward Proxy with App Server Integration.

2013-03-06 Thread Anil J
uires mod_proxy_http > > > I hope this makes my question more clear. Sorry for it not being very > specific earlier. > > > > Thanks, > > > > /anil. > > > > On Wed, Mar 6, 2013 at 1:28 PM, Nick Kew wrote: > > > > On 6 Mar 2013, at 18:11, A

Re: [users@httpd] Re: Apache Forward Proxy with App Server Integration.

2013-03-06 Thread Anil J
earlier. Thanks, /anil. On Wed, Mar 6, 2013 at 1:28 PM, Nick Kew wrote: > > On 6 Mar 2013, at 18:11, Anil J wrote: > > > Hi, can anyone comment on this? > > You haven't told us where the problem is. The things you describe > are just standard ap

[users@httpd] Re: Apache Forward Proxy with App Server Integration.

2013-03-06 Thread Anil J
Hi, can anyone comment on this? /anil. On Wed, Mar 6, 2013 at 12:25 AM, Anil Jangam wrote: > Hi, > > I am trying to understand how can I setup a Apache httpd instance with > proxy functionality addition to an integration of a Application Server. > > I am looking for is that Proxy should be able

[users@httpd] Re: Installation of webapp in a virtualhost subdomain

2013-02-28 Thread Paulo J. Matos
On 28/02/13 16:58, Tom Evans wrote: What? Why are you doing some rewrite magic, and not simply defining virtualhosts for your subdomains? That's how I saw done somewhere online. :) Use a real virtualhost that has a proper DocumentRoot for each subdomain. That didn't occur to me but it wo

[users@httpd] Installation of webapp in a virtualhost subdomain

2013-02-28 Thread Paulo J. Matos
Hello, I am trying to get openphoto installed in photos.matos-sorge.com, this is a subdomain of matos-sorge.com, which I own. To implement the subdomains I have a virtual host that starts with: RewriteEngine on # Rewrite everything for example.com to the # /www/ subdirectory RewriteCon

RE: [users@httpd] rewritecond problem

2013-02-24 Thread Coughlin, Michael J
explaining correctly. From: Igor Cicimov [icici...@gmail.com] Sent: Saturday, February 23, 2013 10:36 PM To: users Subject: Re: [users@httpd] rewritecond problem On 24/02/2013 2:29 PM, "Coughlin, Michael J" mailto:michael.cough...@opm.gov>> wro

[users@httpd] rewritecond problem

2013-02-23 Thread Coughlin, Michael J
I have a RewriteCond issue: I have a URI: /II/anydirectory/anyfile I can get an exact match: RewriteCond %{REQUEST_URI} ^/II/([^/]+)/(.+)$ So if I want the /II part to be optional in the match: RewriteCond %{REQUEST_URI} ^(/II)?/([^/]+)/(.+)$ Now any thing can get through, since the

RE: [users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Coughlin, Michael J
I care because I have to test again at the top of the rules for the rewritten URIs to say "ok their fine now, get out", or they get screwed up by the re-evluation of the same rules for some instances. I have read further that I need to place the rules inside a to prevent this, I used a wrot

[users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Coughlin, Michael J
redirects are still happening. Was this a lie? Or am I missing something again.. From: users-h...@httpd.apache.org [users-h...@httpd.apache.org] Sent: Friday, February 08, 2013 3:47 PM To: Coughlin, Michael J Subject: WELCOME to users@httpd.apache.org

RE: [users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
be you loop from testing123 to test.php both matching Le 8 févr. 2013 à 22:46, Boubouch a écrit : > Hi, > > Could you try this > >> RewriteRule ^(t.*)$ test.php?req=$1 [NC,END] > > > Le 8 févr. 2013 à 22:19, "Coughlin, Michael J" a > écrit : > >

RE: [users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
this > RewriteRule ^(testing.*)$ test.php?req=$1 [NC,END] Le 8 févr. 2013 à 22:19, "Coughlin, Michael J" a écrit : > The request: > > www.mysite.com/testing123 > > The rule: > > RewriteRule ^(testing.*)$ test.php?req=$1 [NC,L] > > test.php properly rende

[users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
The request: www.mysite.com/testing123 The rule: RewriteRule ^(testing.*)$ test.php?req=$1 [NC,L] test.php properly renders the querystring "req=testing123" (its only purpose to verify the querystring) BUT, RewriteRule ^(t.*)$ test.php?req=$1 [NC,L] gives me: "req=test.php". I don't get

Re: [users@httpd] How to retrieve IP address of incoming packets in text file using httpd source code

2012-12-28 Thread Bouchot j.
Hi Bhavna, >> I need the source code file of apache which accepts requests and through >> which I can get the IP at the initial stage. i think you looking for that /server/listen.c line 174 173 #ifdef MPM_ACCEPT_FUNC 174 server->accept_func = MPM_ACCEPT_FUNC; 175 #else 176

RE: [users@httpd] Redirect subdirectory to another virtualhost on Apache??

2012-10-31 Thread Anthony J. Biacco
Does app_test = galaxy_qa in this example?? If it does, the error doesn’t make much sense in your problem as a Redirect only requires the mod_alias module to be enabled. But if galaxy_qa != app_test then you got a problem somewhere else where you’re trying to do a ProxyPass/ProxyPassReverse for

[users@httpd] How to allow specific IP to bypass .htaccess authentication ?

2012-08-10 Thread J. Bakshi
Dear list, I have the following in my .htaccess to force the authentication [] AuthName "htaccess password prompt" AuthUserFile /home/askapache.com/.htpasswd AuthType Basic Require valid-user [...] Now I like some IPs to bypass the authentication. Hence I have modified the rule as [...] Or

Re: [users@httpd] Mod_sqlite install on Apache 2.2.15 using yum question

2012-07-11 Thread Clinton J. Campbell
John, I don't believe that your issue has to do with Apache compatibility here. This seems to be a problem with Yum based on your error messages. This isn't the right forum to get help on Yum, but I'd recommend running the search command for sqlite to find what name the package is available u

Re: [users@httpd] Apache modifies URL when offloading SSL

2012-07-01 Thread Clinton J. Campbell
ind-forwarding-proxy On Sunday, July 1, 2012 at 11:01 AM, Daniel Ruggeri wrote: > On 7/1/2012 2:40 AM, Clinton J. Campbell wrote: > > I know that this is not an unusual combo, fronting an unencrypted httpd > > with a proxy accepting connections over https, and the server seems to

Re: [users@httpd] Apache modifies URL when offloading SSL

2012-07-01 Thread Clinton J. Campbell
help! Clinton On Friday, June 29, 2012 at 9:51 AM, Daniel Ruggeri wrote: > On 6/29/2012 11:43 AM, Clinton J. Campbell wrote: > > I'm trying to configure the logs so that I can confirm whether this is > > generated by Apache or not. Any tips? > > > > mod_

Re: [users@httpd] Apache modifies URL when offloading SSL

2012-06-29 Thread Clinton J. Campbell
che as reverse proxy you need to have something like: > > ProxyRequest off > ProxyPass / http://apache/ > ProxyPassReverse / http://apache/ > > I'm not sure about Squid as I've never used it. > > Igor > > On Fri, Jun 29, 2012 at 1:28 PM, Clinton J. Campbell &

[users@httpd] Apache modifies URL when offloading SSL

2012-06-28 Thread Clinton J. Campbell
I've been searching archives and other forums, and though I've found others who have asked similar questions, I haven't found a solution yet. I currently have an Apache server that sits behind a Squid Reverse Proxy. The Apache server runs two virtual hosts, a Joomla website and a WebDav directo

Re: [users@httpd] how to add multiple redirection rule in .htaccess ?

2012-06-27 Thread J. Bakshi
[L] > > > On Wed, Jun 27, 2012 at 3:53 PM, J. Bakshi wrote: > > > Dear list, > > > > I already have the following at my .htaccess which is running well > > > > [] > > > > RewriteCond %{HTTP_HOST} ^mydomain.com [OR] > > Rewrite

[users@httpd] how to add multiple redirection rule in .htaccess ?

2012-06-26 Thread J. Bakshi
Dear list, I already have the following at my .htaccess which is running well [] RewriteCond %{HTTP_HOST} ^mydomain.com [OR] RewriteCond %{HTTP_HOST} ^www.mydomain.com RewriteCond %{REQUEST_URI} !folderB/ RewriteRule ^(.*)$ folderB/ [L] [...] I need a little modification like

Re: [users@httpd] git over http; how to check /refs/heads/master

2012-06-22 Thread J. Bakshi
On Fri, 22 Jun 2012 13:47:13 +0530 "J. Bakshi" wrote: > Dear list, > > I am trying to make a pre-receive hook which can check /refs/heads/master > and based on the user name it allow/deny push to master. The git is > configured over > http here. So from apache

[users@httpd] git over http; how to check /refs/heads/master

2012-06-22 Thread J. Bakshi
Dear list, I am trying to make a pre-receive hook which can check /refs/heads/master and based on the user name it allow/deny push to master. The git is configured over http here. So from apache log ; during push I can see "GET /git/test.git/info/refs?service=git-receive-pac

Re: [users@httpd] How to collect username from http header ?

2012-06-20 Thread J. Bakshi
On Wed, 20 Jun 2012 08:39:13 -0400 Jeff Dyke wrote: > On Wed, Jun 20, 2012 at 8:24 AM, J. Bakshi wrote: > > On Wed, 20 Jun 2012 17:44:04 +0530 > > "J. Bakshi" wrote: > > > >> Dear list, > >> > >> I have a git setup where user can aut

Re: [users@httpd] How to collect username from http header ?

2012-06-20 Thread J. Bakshi
On Wed, 20 Jun 2012 17:44:04 +0530 "J. Bakshi" wrote: > Dear list, > > I have a git setup where user can authenticate via https based on htpasswd > authentication. > I need some more fine tuning ; hence I like to know the username for the > specific connection. &

[users@httpd] How to collect username from http header ?

2012-06-20 Thread J. Bakshi
Dear list, I have a git setup where user can authenticate via https based on htpasswd authentication. I need some more fine tuning ; hence I like to know the username for the specific connection. Say user1 has authenticated successfully, and I like to compare his ACL based on another file. How

[users@httpd] apache setenv question

2012-06-05 Thread J. Bakshi
Dear list, I have come here with a gitweb issue which is related with apache setenv . I have set gitweb with a single project root and it's running fine. The problem arise when multiple root come into picture. Following the git documentation, I have defined the separate gitweb.conf in the apach

Re: [users@httpd] Solved non-www to www redirect works with a little issue

2012-05-25 Thread J. Bakshi
Solved :-) RewriteRule ^(.*) http://www.example.com/%{REQUEST_URI} [R=301] On Fri, 25 May 2012 16:23:29 +0530 "J. Bakshi" wrote: > Hello, > > I have place the following in my .htaccess to redirect non-www to www > redirection > > ` > Rewrite

[users@httpd] non-www to www redirect works with a little issue

2012-05-25 Thread J. Bakshi
Hello, I have place the following in my .htaccess to redirect non-www to www redirection ` RewriteCond %{HTTP_HOST} ^example\.com$ RewriteRule ^(.*) http://www.example.com/$1 [R=301] ``` The redirect work well but a little hitch. Say If I visit http://example.com/page1

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-04 Thread P J
On Fri, May 4, 2012 at 8:46 AM, Tom Evans wrote: > On Fri, May 4, 2012 at 4:18 PM, P J wrote: > > On Fri, May 4, 2012 at 5:28 AM, Jim Jagielski wrote: > >> > >> The closer MinSpareServers/MaxSpareServers are, the more time > >> Apache needs to spend killing

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-04 Thread P J
On Fri, May 4, 2012 at 5:28 AM, Jim Jagielski wrote: > The closer MinSpareServers/MaxSpareServers are, the more time > Apache needs to spend killing and creating child processes > to ensure it stays within that narrow limit > On May 3, 2012, at 2:40 PM, P J wrote: > > Thanks.

Re: [users@httpd] Help troubleshooting performance issue, after "1000 total children" Apache no longer responds to HTTP requests. Not MaxClients issue?

2012-05-03 Thread P J
On Thu, May 3, 2012 at 9:51 AM, Pablo Armando wrote: > What about the number of open file descriptors ?? > > > > On 05/03/2012 01:33 PM, Tom Evans wrote: > >> On Mon, Apr 30, 2012 at 4:20 PM, P J wrote: >> The fact that your issue seems to happen when you go a

  1   2   3   4   5   6   7   >