Re: [users@httpd] 64 Bit Apache httpd on Solaris

2011-02-07 Thread Kevin . Friswell
Hi William, I tried CFLAGS="gcc -m64", (gcc is installed in /usr/sfw/bin/), but it broke configure ... checking for gcc... gcc checking for C compiler default output file name... configure: error: in `/opt/oracle/stage/tmp/k_working/Apache2.2/httpd-2.2.17/srclib/apr': configure: error: C compi

Re: [users@httpd] 64 Bit Apache httpd on Solaris

2011-02-07 Thread William A. Rowe Jr.
On 2/7/2011 6:19 PM, kevin.frisw...@callista.com.au wrote: > Thanks Eugene, I used some of your ideas for "inspiration". > > CFLAGS=”-m64” > export CFLAGS This will break some ./configure tests, to get it right you really need to set/export CC="gcc -m64" or similar, based on your

Re: [users@httpd] 64 Bit Apache httpd on Solaris

2011-02-07 Thread Kevin . Friswell
Thanks Eugene, I used some of your ideas for "inspiration". My final solution was LD_LIBRARY_PATH=/usr/lib/64:/usr/sfw/lib/64 export LD_LIBRARY_PATH CFLAGS=?-m64? export CFLAGS LDFLAGS=?-m64? export LDFLAGS ./configure --prefix=/usr/local/ap

Re: [users@httpd] VirtualHost Question

2011-02-07 Thread Eric Covener
> My problem is that if I enter http://sqaure/ I receive a 403 error "You > don't have permission to access / on this server". However if I enter > http://square/public I the default zend framework index.php page appears. What does your error log say? -

Re: [users@httpd] VirtualHost Question

2011-02-07 Thread IrishStudent76
Ok I;m now at the following situation with this. I've edited my settings for Apache by following this page http://foundationphp.com/tutorials/apache22_vhosts.php I have moved my DocumentRoot to c:/htdocs I have created a folder c:/WebDocs. I've edited my httpd-vhosts.conf file to the following

Re: [users@httpd] PHP to control Apache

2011-02-07 Thread Nick Kew
On Sun, 06 Feb 2011 23:05:47 +0100 Lars Nielsen wrote: > Hi, > > I am writing a PHP application to control primarily my VirtualHost > configurations in Apache(2.2.9). Can you guide my to any good knowlegde > of > 1. how to structure the generated configurationfile(s) > 2. how to reload/resta

Re: [users@httpd] SSL offload and load balancing with Apache2's mod_proxy and mod_balancer for Weblogic, Tomcat and Apache2

2011-02-07 Thread Margus Pärt
Hey! Sorry, I did not explain detailed enough - I'm not using mod-itk in balancer, but in backend server. I made few line of corrections, but will describe more detailed later and add some more configuration examples and compare to what if orginal apache logic would be used for SSL offload a

Re: [users@httpd] problem with extra numbers after %h hostname/ip address in access_log

2011-02-07 Thread Randy Tejas
The error_log also shows the problem: [Mon Feb 07 10:26:01 2011] [error] [client 10.56.194.199194.199] File does not exist: /var/apache2/htdocs/favicon.ico From: Igor Galić To: users@httpd.apache.org Sent: Sat, January 29, 2011 6:39:18 AM Subject: Re: [users

Re: [users@httpd] mod_auth_cas for windows

2011-02-07 Thread K J.Sreekumar
I had gone through this link, which was not very clear. I had also tried building from source, and got lots of errors (missing header files) when compiling apache httpd on windows visual c++. As we are nearing a project release, I thought of trying here for a pre-compiled version before a deep dive

Re: [users@httpd] mod_auth_cas for windows

2011-02-07 Thread Sreekumar Keezhanjilil Jairaj
Hi Tom, I apologize for any annoyance caused. In fact the previous mails did not show up in my inbox until I found them in my spam folder. Also I've created this gmail Id as a dedicated account to follow Apache and Tomcat mailing lists. Hence these repetitions. (Obviously, this won't happen again)

Re: [users@httpd] SSL offload and load balancing with Apache2's mod_proxy and mod_balancer for Weblogic, Tomcat and Apache2

2011-02-07 Thread Tom Evans
On Mon, Feb 7, 2011 at 12:00 PM, Margus Pärt wrote: > Hello! > > Thank you for your response! Glad to hear that I am not the only, who has > thought that this solution would make life easier. > > Taking Apache-Event into use in our case is not an option, as > Apache2-mpm-itk is used (proccesses ru

Re: [users@httpd] 64 Bit Apache httpd on Solaris

2011-02-07 Thread Eugene
I compile Httpd with SunStudio using options: CC=cc \ CFLAGS="-fast -xO4 -mt -xtarget=generic -m64 -DSSL_EXPERIMENTAL -DSSL_ENGINE" \ CXX=$CC \ CXXFLAGS="$CFLAFS" \ LDFLAGS="-xtarget=generic -m64 -L/usr/sfw/lib/64 -L/usr/lib/64 -R/usr/sfw/lib/64 -R/usr/lib/64" \ GREP=grep \ ./configure \ ## here i

Re: [users@httpd] SSL offload and load balancing with Apache2's mod_proxy and mod_balancer for Weblogic, Tomcat and Apache2

2011-02-07 Thread Margus Pärt
Hello! Thank you for your response! Glad to hear that I am not the only, who has thought that this solution would make life easier. Taking Apache-Event into use in our case is not an option, as Apache2-mpm-itk is used (proccesses running in different user rights) and new TCP connection has t

Re: [users@httpd] mod_auth_cas for windows

2011-02-07 Thread Tom Evans
On Mon, Feb 7, 2011 at 10:40 AM, K J.Sreekumar wrote: > Hello, Don't keep sending the same message to the mailing list; if people know, they will respond, sending it multiple times within a short space of time is just rude. > Anyone has a compiled mod_auth_cas.so/dll for windows 32/64 ? It woul

[users@httpd] CAS (JASIG) compiled module.

2011-02-07 Thread Sreekumar Keezhanjilil Jairaj
Hello, I'm searching for a compiled *mod_auth_cas.so/dll* for windows 32/64 deployment. Help anyone...? Thanks and Regards Sree

Re: [users@httpd] LimitRequestBody and Content-Length header

2011-02-07 Thread joelittlejohn
Can anyone offer any advice on this one? Cheers joelittlejohn wrote: > > Hi all, > > I'm try to use the LimitRequestBody directive to protect against > clients that attempt to make request with extremely large body to > negatively affect our service. I'd like to know whether this directive

[users@httpd] mod_auth_cas for windows

2011-02-07 Thread K J.Sreekumar
Hello, Anyone has a compiled *mod_auth_cas.so/dll* for windows 32/64 ? It would be great if you could share this with us ? Thanks and Regards Sree

Re: [users@httpd] SSL offload and load balancing with Apache2's mod_proxy and mod_balancer for Weblogic, Tomcat and Apache2

2011-02-07 Thread Tom Evans
On Sun, Feb 6, 2011 at 1:25 PM, Margus Pärt wrote: > Hello! > > > I had an idea, how to SSL offload and Load balance with Apache2 a bit > differently, and I implemented it also. > > Basically there 2 Apache instances running on the same machine with > different configurations, one for SSL offload,