Re: [users@httpd] Which Process?

2017-01-11 Thread Chris Arnold
I found the answer which is to use the SCOM MP in Operation Manager. Works like a charm now Sent from my iPhone On Jan 11, 2017, at 6:46 PM, Chris Arnold mailto:carn...@electrichendrix.com>> wrote: We are using apache 2.4.x on SLES 12 SP1. We have a SCOM server that monitors proces

[users@httpd] Which Process?

2017-01-11 Thread Chris Arnold
We are using apache 2.4.x on SLES 12 SP1. We have a SCOM server that monitors processes on our SLES 12 server. When i try to monitor the apache/httpd service, SCOM lists 4 or 5 httpd services on that SLES 12 server. Is there a way to tell which httpd service i should assign to be monitored??

[users@httpd] HTTPS Redirect Not Working

2015-10-09 Thread Chris Arnold
Apache 2.4.x on SLES12. We have a web app in tomcat that is directly accessible by port 8080 and 8443. We use a combination of proxypass and mod_jk to connect to it from apache (never could get this to work without using both). We also use a https redirect to make it easier for the users. So if

[users@httpd] Images Not Loading

2015-02-25 Thread Chris Arnold
Apache 2.4.10 that use to work fine. Then a power outage and now site images do not load. When you look at the error log: AH00529: /srv/www/htdocs/sites/sitename/images/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/srv/www/htdocs/sites/sitename/images

[users@httpd] Reverse Proxy/HTTPS Issues

2015-02-22 Thread Chris Arnold
Apache 2.4.10. We have many users who still access a site using http://sub.domain.com/webapp/page. We first want to redirect that above link to https. We would also like to redirect http://sub.domain.com to http

[users@httpd] Re: Redirect HTTP to HTTPS

2015-02-09 Thread Chris Arnold
>> Apache 2.4.10 on SLES 12. I am trying to redirect a subdomain address from >> http to https. So when a user forgets to use https they will still land on >> the correct page. I tried using: >> >> RewriteEngine On >> RewriteCond %{HTTPS} off >> RewriteCond %{HTTP_HOST} ^(sub1|sub2|sub3)\. [NC]

RE: [users@httpd] Redirect HTTP to HTTPS

2015-02-09 Thread Chris Arnold
ProxyPass /webapp/ https://sub.example.com/webapp/ ProxyPassReverse /webapp/ https://sub.example.com/webapp/ RedirectMatch ^/$ https://sub.example.com/webapp/ # Redirect iFolder and Admin to HTTPS Redirect /webapp2 https://example.com/webapp2 Redirect /webapp3 https://exam

Re: [users@httpd] Redirection via HTTPS

2015-02-08 Thread Chris Arnold
> Server should be SSL-aware but has no certificate configured [Hint: > SSLCertificateFile] ((null):0) > [Sun Feb 08 13:31:27.595849 2015] [ssl:emerg] [pid 7124] AH02312: > Fatal error initialising mod_ssl, exiting. Are you sure you have a cert configured? Double check ssl config ---

Re: [users@httpd] Redirection via HTTPS

2015-02-08 Thread Chris Arnold
On Feb 8, 2015, at 1:38 AM, YUSUI T mailto:yusui.tomik...@gmail.com>> wrote: The error.log says nothing. Next, I exchanged for the "Redirect". But it shows the following errors. You probably could have left that entry in and just added the Redirect statement (not sure what flavor of OS you

RE: [users@httpd] Redirection via HTTPS

2015-02-07 Thread Chris Arnold
>Hello. I> have a question about 301 redirection of https. >My website is accessible with both of >non-subdomain >http(s)://mydomain.com and >subdomain-www >http(s)://www.mydomain.com. >Both have the same IP >address. I> would like to change http

[users@httpd] Redirect HTTP to HTTPS

2015-02-07 Thread Chris Arnold
Apache 2.4.10 on SLES 12. I am trying to redirect a subdomain address from http to https. So when a user forgets to use https they will still land on the correct page. I tried using: RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(sub1|sub2|sub3)\. [NC] RewriteRule (.*) ht

[users@httpd] SSL Not Allowing Access to Site

2015-02-06 Thread Chris Arnold
Apache 2.4.10 on SLES12. Apache 2.4.10 reverse proxy facing the internet that "proxies" https requests to webapp on a different server on the same LAN. Trying to "proxy" https://example.com/folder. This works in apache 2.2.12: ProxyPass /ifolder https://example.com/folder ProxyPassReverse /ifol

[users@httpd] Reverse Proxy Basic Question

2015-02-04 Thread Chris Arnold
So I have been trying to better understand mod_proxy, specifically, reverse proxy on apache 2.4.10. I have read http://httpd.apache.org/docs/current/mod/mod_proxy.html to better understand but I still have a basic question. In a reverse proxy directive/statement: ProxyPass / http://somethi

[users@httpd] More mod_proxy

2015-01-29 Thread Chris Arnold
Apache 2.4.10 on SLES12. I am trying to send https://domain.tld/ifolder to and server running the app. Here is what i have in my ssl vhost: ProxyPass /ifolder https://domain.tld/ifolder ProxyPassReverse /ifolder https://domain.tld/ifolder This results in a 500 in the broswer. Here are the corr

Re: [users@httpd] Redirect http to https

2015-01-29 Thread Chris Arnold
Don't use pcre in redirect. For what you ask you just need a simple: Redirect / https://yourdomain/ in the nonssl virtual host. If you insist on using pcre with redirect for some particular reason you have not mentioned yet, use RedirectMatch. Won't that redirect all traffic? I only need to red

Re: [users@httpd] Redirect http to https

2015-01-28 Thread Chris Arnold
On Jan 28, 2015, at 6:31 PM, Yehuda Katz mailto:yeh...@ymkatz.net>> wrote: Make sure you put these in the correct VHOST. They need to be in the :80 vhost, not the :443 vhost. I usually use the Redirect directive (http://httpd.apache.org/docs/2.4/mod/mod_alias.html#redirect) instead. Yea, I t

[users@httpd] Redirect http to https

2015-01-28 Thread Chris Arnold
Apache 2.4.10 on SLES 12. I am trying to redirect port 80 requests to 443 so that http://share.domain.tld results in https://share.domain.tld. Here is what i have tried in the vhost file: RewriteEngine On #Redirect share.domain.tld port 80 requests to SSL RewriteCon

Re: [users@httpd] Proxy pass

2015-01-21 Thread Chris Arnold
On Jan 21, 2015, at 3:34 PM, Rodrigo Cunha wrote: > > Hi, > what is your enviroment layout ? > SSL which webproxy or ssl in apache withou webproxy? Not sure I understand your second question but I will see if the answer to your first question is of any help: 1 internet facing Apache 2.2.12 ser

RE: [users@httpd] Proxy pass

2015-01-21 Thread Chris Arnold
From: Chris Arnold Sent: Tuesday, January 20, 2015 9:07 PM To: users@httpd.apache.org Subject: RE: [users@httpd] Proxy pass > Is there something extra for this to work on Apache 2.4.10? >>Compared to what previous level? LogLevel rewrite:trace

RE: [users@httpd] Proxy pass

2015-01-20 Thread Chris Arnold
> Is there something extra for this to work on Apache 2.4.10? >>Compared to what previous level? LogLevel rewrite:trace8 and the >>error log would be a big help. Debug says: [Tue Jan 20 19:32:05.772494 2015] [reqtimeout:info] [pid 7091] [client 192.168.123.165:51763] AH01382: Request header re

[users@httpd] Apache Not Starting

2015-01-19 Thread Chris Arnold
Apache 2.4.10. I am having 1 heck of a time getting 2.4.10 working. Now, apache is not starting: sudo systemctl start apache2.service Job for apache2.service failed. See "systemctl status apache2.service" and "journalctl -xn" for details. webtest:~ # systemctl status apache2.service -l apache2.

[users@httpd] Proxy pass

2015-01-19 Thread Chris Arnold
Apache 2.4.10. This use to work: a request from https://share.domain.tld would find our Apache server. Apache would pass it to the tomcat app running on the same server port 8443. Since going to Apache 2.4.10, this no longer works. Here is the vhost: This rewrites https://share.anydomain.tld

Re: [users@httpd] Apache 2.4 Problems

2015-01-17 Thread Chris Arnold
> On Jan 17, 2015, at 8:43 PM, David Grant wrote: > > Take a look at ports.conf. > > I think you’ll find what you’re looking for in that file, and then amend > https.conf accordingly. > > Hope that helps Where exactly is ports.conf located? I searched my file system and could not find it -

[users@httpd] RE: Apache 2.4 Problems

2015-01-17 Thread Chris Arnold
>Apache 2.4 on sles 12. I understand this version is way >different from 2.2 >but I can't get 2.4 to even listen on 80 or >443. Can anyone help me with >this? The logs only shows >me when I start and stop Apache. Btw, I am using >>apache2ctl stop/start as rcapache2 doesn't seem to >stop/start an

[users@httpd] Apache 2.4 Problems

2015-01-17 Thread Chris Arnold
Apache 2.4 on sles 12. I understand this version is way different from 2.2 but I can't get 2.4 to even listen on 80 or 443. Can anyone help me with this? The logs only shows me when I start and stop Apache. Btw, I am using apache2ctl stop/start as rcapache2 doesn't seem to stop/start and etc/ini

RE: [users@httpd] Not Listening on 443

2015-01-16 Thread Chris Arnold
> > >>One of these defines isn't set. Where should it be set? The SSL VHost has VHost info... .. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@h

[users@httpd] Not Listening on 443

2015-01-16 Thread Chris Arnold
Apache 2.4.12. netstat -nlp does not show apache SSL listening. I have a self-signed cert for testing purposes and my SSL virtualhost points to that crt and key. The listen file: Listen 80 Listen 443 mod_ssl is loaded. Trying to upgrade from 2.2.x

Re: [users@httpd] 2.4 Configuration Errors

2015-01-15 Thread Chris Arnold
> On Jan 15, 2015, at 5:21 PM, Chris Arnold wrote: > > > apache 2.4.10 on SLES 12. We are moving from apache 2.2.x on SLES 11 SP3 and > when i migrate our current http settings into 2.4.10 and rcapache2, i get > this error: > > > Jan 15 17:03:53 webtest start_apa

[users@httpd] 2.4 Configuration Errors

2015-01-15 Thread Chris Arnold
apache 2.4.10 on SLES 12. We are moving from apache 2.2.x on SLES 11 SP3 and when i migrate our current http settings into 2.4.10 and rcapache2, i get this error: Jan 15 17:03:53 webtest start_apache2[6019]: AH00526: Syntax error on line 36 of /opt/alfresco/tomcat/conf/jk.conf: Jan 15 17:03:5

Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-16 Thread Chris Arnold
> Chris, if you encounter any issues with mod_proxy_msrpc please report them at > https://github.com/bombadil/mod_proxy_msrpc/issues . Note that OAB, OWA, > Autodiscover, ActiveSync, etc. all use ">normal" HTTP/S (and not MSRPC like > OA) so they should work without mod_proxy_msrpc. There is an

Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Chris Arnold
>Chris, are you trying to use webmail or Outlook Anywhere (or both)? >I have heard the RPC module works but never used it myself. >As for OWA, I will try it on one of my systems and see what happens.   Hey Yehuda,   Both. I will also need OAB and all the other things that come with exchange

Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Chris Arnold
I figured i would hear crickets on this issue on this list :) Anybody tried this module? https://github.com/bombadil/mod_proxy_msrpc - Original Message - From: "Chris Arnold" To: users@httpd.apache.org Sent: Saturday, February 15, 2014 5:48:07 PM Subject: [users@httpd] Re

[users@httpd] ReverseProxy Exchange 2013

2014-02-15 Thread Chris Arnold
I have asked this on the exchange forum and am getting some help but they always say it is an apache issue and it may be but what i need is on the MS side. So i am asking here in the event someone here has done this. What i am trying to do: use autodiscover during a outlook email account setup.

Re: [users@httpd] Virtual host Alias

2014-01-23 Thread Chris Arnold
> On Jan 23, 2014, at 4:44 AM, "Ole Kürstein" wrote: > > I have a problem. Dont know if it can be done. > > It is this i can't get working: www.example.com/test > > can't get the /test working > > example--- > > > ServerName www.example.com > ServerAlias example.com > Doc

[users@httpd] SSL WebDAV Rewrite

2014-01-10 Thread Chris Arnold
Apache 2 2.2.x. I am trying to proxy a WebDAV space to a tomcat app on the same server with a rewrite and [P] flag. So when https://example .com/path/to/WebDAV/space is entered, the apache server will send that request to the tomcat app. Here is rewrite: RewriteCond %{HTTP_HOST} ^proxyhostname$

Re: [users@httpd] Another mod_proxy Question/Issue

2013-11-01 Thread Chris Arnold
>Just to close the discussion here: >Chris sent me the real domain name and I had a look: >The issue is actually that the ProxyPassReverse is not correct. >Requests for the main page come back with a 302 pointing to /share/ and all >assets used also have /share/ at the beginning of their path.

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
:8443/$1 [P] >> >> And this takes me right to the tomcat home page, / >> >> Tried this: >> >> RewriteRule ^/share/(.*) https://192.168.123.3:8443/share/$1 [P] >> And this gives me a 403 access denied. >> >> >>> On Thu, Oct 31, 201

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
u, Oct 31, 2013 at 2:09 PM, Chris Arnold < carn...@electrichendrix.com > wrote: >What about when you go to https://share.example.com/share/ ? If i remember right, this gave the same error. As i try different things and think about this, i am going to need multiple clients to acce

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
>What about when you go to https://share.example.com/share/ ? If i remember right, this gave the same error. As i try different things and think about this, i am going to need multiple clients to access this web app securely like so https://share.anydomain.tld and will need apache to send tho

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
> Is HTTPD giving that error or Tomcat? HTTPD >What does the log say is the reason? Directory index forbidden by directive: /srv/www/htdocs

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
>>What URL are you using to access this vhost? >If you want to access https://example.com/share/ and have that hit the proxy, >you would need to make the proxy config ProxyPass /share/ https://192.168.123.3:8443/share/ https://share.example.com which will end up being https://share.ex

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
The trailing slash is important. ProxyPass / https://192.168.123.3:8443/share >This is telling Apache to strip off the slash when it does the proxy. This is >probably not what you want to do. I removed the trailing slash >What URL are you using to access this vhost? >If you want t

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
>Did you have a trailing slash in the ProxyPass? >I would expect that it would have tried to get /share / share/. Yes, i had a trailing slash and it did in fact tried to get /share/share. When i remove the trailing slash it gives me /shareshare

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
>First of all, is "/folder/", "/path/" or "/share/"? You seem to have >used them all so far.. please be careful when anonymizing your config >that you aren't removing information that is necessary to determine >what is wrong This really shouldn't matter what it is /folder /path/ or /share as l

Re: [users@httpd] Another mod_proxy Question/Issue

2013-10-31 Thread Chris Arnold
On Wed, Oct 30, 2013 at 9:24 PM, Chris Arnold < carn...@electrichendrix.com > wrote: Apache/2.2.12 (Linux/SUSE). We have a web app that runs under tomcat (8080). We have apache using mod_proxy (80 and 443). According to the tomcat mailing list: What we need is for apache to

[users@httpd] Another mod_proxy Question/Issue

2013-10-30 Thread Chris Arnold
Apache/2.2.12 (Linux/SUSE). We have a web app that runs under tomcat (8080). We have apache using mod_proxy (80 and 443). According to the tomcat mailing list: >Do you need >the application to behave differently given a particular client? If >not, there's nothing to do. If so, you probably need

Re: [users@httpd] X-Forwarded-For

2013-10-25 Thread Chris Arnold
.cloudflare.com/hc/en-us/sections/200038166-How-do-I-restore-original->visitor-IP-to-my-server-logs- > Thanks Yehuda! Cloudflare wants you to install its mod. Is it possible to use what i already have to do this, which is apache? On Thu, Oct 24, 2013 at 9:32 PM, Chris Arnold <

[users@httpd] X-Forwarded-For

2013-10-24 Thread Chris Arnold
Apache 2.2 (i believe) on sles11. We have some servers behind our apache (reverse) proxy. When connections come in to apache and apache proxies the connections, the logs show the apache proxy ip. We need to see the originating ip. I have seen on the internet that x-forwarded-for will do this. Ca

[users@httpd] RPC Over HTTPS

2013-04-28 Thread Chris Arnold
Apache 2.2.12 on SLES11 SP2. I have googled this error and understand Apache does not support this as it opens a security hole. [Sun Apr 28 20:36:32 2013] [error] [client 96.10.xxx.xxx] Invalid method in request RPC_IN_DATA /rpc/rpcproxy.dll?localhost:3388 HTTP/1.1 [Sun Apr 28 20:36:32 2013] [er

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
On Apr 25, 2013, at 9:53 PM, "Chris Arnold" wrote: > > > From: "Chris Arnold" > To: users@httpd.apache.org > Sent: Thursday, April 25, 2013 4:29:15 PM > Subject: Re: [users@httpd] Rewrite Rule > > On Apr 25, 2013, at 3:29 PM, "Chris Arnold&qu

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
- Original Message - From: "Chris Arnold" To: users@httpd.apache.org Sent: Thursday, April 25, 2013 4:29:15 PM Subject: Re: [users@httpd] Rewrite Rule On Apr 25, 2013, at 3:29 PM, "Chris Arnold" wrote: > Ok, I got namevirtualhost working on 443. I also ma

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
On Apr 25, 2013, at 3:29 PM, "Chris Arnold" wrote: > Ok, I got namevirtualhost working on 443. I also made a new VirtualHost as > you instructed above. In fact, https://apps.domain.tld does make it to the > other server, 192.168.123.7. Now the problem is the proxied url does

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
On Apr 25, 2013, at 12:36 PM, "Tom Evans" wrote: > On Thu, Apr 25, 2013 at 4:53 PM, Chris Arnold > wrote: >> On Apr 25, 2013, at 11:32 AM, "Tom Evans" wrote: >> >> Because reverse proxy does not work > > ... > > The *only* way to get c

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
Ooopppsss!! Anyway I can get a mod to delete my last email to the list? Sent from my iPhone On Apr 25, 2013, at 1:44 PM, "Chris Arnold" wrote: > Sorry to email you directly but i am doing this to give you the complete > unedited config files. I don't want them on an ind

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
or the help - Original Message - From: "Tom Evans" To: users@httpd.apache.org Sent: Thursday, April 25, 2013 12:39:47 PM Subject: Re: [users@httpd] Rewrite Rule On Thu, Apr 25, 2013 at 4:53 PM, Chris Arnold wrote: > On Apr 25, 2013, at 11:32 AM, "Tom Evans" wrote: > &

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
On Apr 25, 2013, at 11:32 AM, "Tom Evans" wrote: > It looks like you are rewriting it to it's current location. This > leads to a loop. > > Why are you using rewrite rules anyway? Because reverse proxy does not work > It seems like you want to > reverse proxy from an apache server with a publi

Re: [users@httpd] Rewrite Rule

2013-04-25 Thread Chris Arnold
From: "Chris Arnold" To: users@httpd.apache.org Sent: Wednesday, April 24, 2013 3:21:25 PM Subject: Re: [users@httpd] Rewrite Rule On Apr 24, 2013, at 2:00 PM, "Chris Arnold" wrote: > On Apr 23, 2013, at 8:39 PM, "Chris Arnold" wrote: > > >

Re: [users@httpd] Rewrite Rule

2013-04-24 Thread Chris Arnold
On Apr 24, 2013, at 2:00 PM, "Chris Arnold" wrote: > On Apr 23, 2013, at 8:39 PM, "Chris Arnold" wrote: > > > Apache 2.12.x on SLES11 SP2. We have a RDS server behind an apache server > > using proxypass. We need users to get to the RDS server using &

Re: [users@httpd] Rewrite Rule

2013-04-24 Thread Chris Arnold
On Apr 23, 2013, at 8:39 PM, "Chris Arnold" wrote: > Apache 2.12.x on SLES11 SP2. We have a RDS server behind an apache server > using proxypass. We need users to get to the RDS server using > https://apps.domain.tld. The apache server should catch this request and > se

[users@httpd] Rewrite Rule

2013-04-23 Thread Chris Arnold
Apache 2.12.x on SLES11 SP2. We have a RDS server behind an apache server using proxypass. We need users to get to the RDS server using https://apps.domain.tld. The apache server should catch this request and send/rewrite to https://apps.domain.tld/rds/something/something/login.whatever. We hav

Re: [users@httpd] Rewrite Rule Rewriting root site

2013-04-19 Thread Chris Arnold
On Apr 19, 2013, at 4:48 AM, "Pete Houston" wrote: > On Mon, Apr 15, 2013 at 06:57:13PM -0400, Chris Arnold wrote: >> We have a server at http://rootsite.net. We also have another site/app that >> runs at http://apps.rootsite.net. We host client applications on our s

Re: [users@httpd] Rewrite Rule Rewriting root site

2013-04-17 Thread Chris Arnold
On Apr 15, 2013, at 7:51 PM, "Chris Arnold" wrote: > On Apr 15, 2013, at 7:41 PM, "Daniel Ruggeri" wrote: > > > On 4/15/2013 6:34 PM, Chris Arnold wrote: > >> Actually, it is the RedirectMatch specifically causing the problem. How to > &g

Re: [users@httpd] Rewrite Rule Rewriting root site

2013-04-15 Thread Chris Arnold
On Apr 15, 2013, at 7:41 PM, "Daniel Ruggeri" wrote: > On 4/15/2013 6:34 PM, Chris Arnold wrote: >> Actually, it is the RedirectMatch specifically causing the problem. How to >> specify only match http://apps.somesite.tld? > > You can't. You have to use Re

Re: [users@httpd] Rewrite Rule Rewriting root site

2013-04-15 Thread Chris Arnold
On Mon, Apr 15, 2013 at 6:57 PM, Chris Arnold wrote: > We have a server at http://rootsite.net. We also have another site/app that > runs at http://apps.rootsite.net. We host client applications on our server > using apache so the above site/app needs to be > http://apps.ourclien

[users@httpd] Rewrite Rule Rewriting root site

2013-04-15 Thread Chris Arnold
We have a server at http://rootsite.net. We also have another site/app that runs at http://apps.rootsite.net. We host client applications on our server using apache so the above site/app needs to be http://apps.ourclientsdomain.tld. Here is what i have gotten to work in the site/app virtual hos

Re: [users@httpd] Trying to Rewrite Subdomain

2013-04-06 Thread Chris Arnold
>Apache 2.2.12. I am trying to rewrite a subdomain like so: >http://sub.domain.com to http://sub.domain.com/"alias";. >Here is the alias conf: > >Alias /"alias" /path/to/root/directory > >Options FollowSymLinks >AllowOverride None >Order allow,deny >allow from all >DirectoryInde

[users@httpd] Trying to Rewrite Subdomain

2013-04-06 Thread Chris Arnold
Apache 2.2.12. I am trying to rewrite a subdomain like so: http://sub.domain.com to http://sub.domain.com/"alias";. Here is the alias conf: Alias /"alias" /path/to/root/directory Options FollowSymLinks AllowOverride None Order allow,deny allow from all DirectoryIndex index.php

Re: [users@httpd] Apache Not Redirecting

2013-04-05 Thread Chris Arnold
- Original Message - From: "Chris" To: users@httpd.apache.org Sent: Friday, April 5, 2013 1:34:03 PM Subject: [users@httpd] Apache Not Redirecting >Apache 2.2.12 on sles11 sp2. We are trying to get users to access >http://share.domain.com . Apache has a >VirtualHost file with redirec

[users@httpd] Apache Not Redirecting

2013-04-05 Thread Chris Arnold
Apache 2.2.12 on sles11 sp2. We are trying to get users to access http://share.domain.com. Apache has a VirtualHost file with redirectmatch ^/$ http://share.domain.com/share Apache seems to not be redirecting this. Here is http://share.domain.com results: GET / HTTP/1.1 Host: share.domain.com U

Re: [users@httpd] JkWorkerFile (mod_jk)

2013-03-28 Thread Chris Arnold
On Mar 28, 2013, at 12:26 PM, "Tom Evans" wrote: > Are you including this config file multiple times? Perhaps once > explicitly, and once as a >That I know of, this is the only time it is being called. With that said, in >httpd.conf I have an include statement pointing to /etc/apache2 >/conf

Re: [users@httpd] JkWorkerFile (mod_jk)

2013-03-28 Thread Chris Arnold
On Mar 28, 2013, at 12:26 PM, "Tom Evans" wrote: > Are you including this config file multiple times? Perhaps once > explicitly, and once as a That I know of, this is the only time it is being called. With that said, in httpd.conf I have an include statement pointing to /etc/apache2/conf.d. Ma

[users@httpd] JkWorkerFile (mod_jk)

2013-03-28 Thread Chris Arnold
Apache2.12.x on SLES11 SP2. I am trying to get apache2 mod_jk working with apache to access a webapp. I have loaded the mod_jk module and configured a virtual host and workers.properties file like so: virtualhost: ServerName share.domain.com # The following line makes apache aware of

[users@httpd] 502 Bad Gateway

2013-02-25 Thread Chris Arnold
Apache 2.2.12 on SLES11. I have an app that runs on tomcat port 8080. I have bee following: http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html I want people to get to this app by typing https://domain/app. To achieve this, i have used proxypass (reverse) in the SSL vhost: ProxyPass /app h

Re: [users@httpd] Proxy Config Problem

2013-02-12 Thread Chris Arnold
This is from a wireshark packet capture: 41 4.087378 8.25.230.32 192.168.123.3 TCP 49284 > https [RST, ACK] Seq=1456 Ack=1051 Win=0 Len=0 Does this look like apache proxy is sending the RST and closing the connection? - Original Message - From: "Chris Arnold"

Re: [users@httpd] RePost: [users@httpd] Proxy Config Problem

2013-02-09 Thread Chris Arnold
Could the issue be the client gets the apache proxy server cert and maybe the client is expecting the ifolder server cert? At the present time we use self-signed certs. Sent from my iPhone On Feb 9, 2013, at 7:36 PM, "Chris Arnold" wrote: > On Feb 9, 2013, at 6:33 PM, &qu

Re: [users@httpd] RePost: [users@httpd] Proxy Config Problem

2013-02-09 Thread Chris Arnold
On Feb 9, 2013, at 6:33 PM, "Nick Kew" wrote: > Sorry, not familiar with ifolder. Have you googled > whatever error it gives? Yes. It gives a generic/vague error (an error occurred). I also am seeking help on the ifolder forum. The reason I ask here is because when you bypass the apache proxy

Re: [users@httpd] RePost: [users@httpd] Proxy Config Problem

2013-02-09 Thread Chris Arnold
On Feb 9, 2013, at 5:23 PM, "Nick Kew" wrote: > > On 9 Feb 2013, at 20:28, Chris Arnold wrote: > >> I am wondering if I need some kind of wildcard/regex to make this work. >> Maybe I need to useProxyPreserveHost Directive or one of the other options. > >

[users@httpd] RePost: [users@httpd] Proxy Config Problem

2013-02-09 Thread Chris Arnold
I have been trying to understand the mod_proxy module from http://httpd.apache.org/docs/2.2/mod/mod_proxy.html I am wondering if I need some kind of wildcard/regex to make this work. Maybe I need to useProxyPreserveHost Directive or one of the other options. > I am trying to proxy a connection

[users@httpd] Proxy Config Problem

2013-02-08 Thread Chris Arnold
I am trying to proxy a connection from ifolder client to our ifolder server. Here are the proxypass statements: ProxyPass /ifolder https://192.168.123.4/ifolder ProxyPassReverse /ifolder https://192.168.123.4/ifolder With just those statements, i get these errors in the apache pr

[users@httpd] mod_jk Questions

2013-01-31 Thread Chris Arnold
Here's what we are trying to accomplish: Already have apache 2.22.x running multiple sites and acting as proxy. We are now looking into using a web app that uses tomcat (port 8080) and will run on the same server as apache. Users will be accessing the tomcat site using https://share.domain.com.

Re: [users@httpd] Reverse Proxy with Exchange 2010

2013-01-20 Thread Chris Arnold
> - > LogFormat = "%host %other %logname %time1 %methodurl %code %bytesd > %refererquot %uaquot" > CustomLog /var/log/apache2/access.log combined > What do the logs at the proxy contain and look at the logs on the winblows server > LoadModule proxy_module /usr/lib/apache2/modules

Re: [users@httpd] Interesting Problem

2012-11-27 Thread Chris Arnold
- Original Message - From: "Igor Cicimov" To: "users" Sent: Monday, November 26, 2012 5:49:19 PM Subject: Re: [users@httpd] Interesting Problem On Tue, Nov 27, 2012 at 6:03 AM, Chris Arnold < carn...@electrichendrix.com > wrote: #This will be

Re: [users@httpd] Interesting Problem

2012-11-26 Thread Chris Arnold
On Nov 26, 2012, at 5:49 PM, Igor Cicimov wrote: > So you have put the proxy for https://mail.domain.com inside domain.net > virtual host. You realize they are different domains right? > You need to set a separate vhost for that subdomain mail.domain.com and put > the Proxy there. Or you can se

Re: [users@httpd] Interesting Problem

2012-11-26 Thread Chris Arnold
- Original Message - From: "Chris Arnold" To: users@httpd.apache.org Cc: users@httpd.apache.org Sent: Monday, November 26, 2012 8:04:34 AM Subject: Re: [users@httpd] Interesting Problem On Nov 26, 2012, at 7:07 AM, Igor Cicimov < icici...@gmail.com > wrote:

Re: [users@httpd] Interesting Problem

2012-11-26 Thread Chris Arnold
On Nov 26, 2012, at 7:07 AM, Igor Cicimov wrote: > Do you have a default one like this > > > or with the ip? > Yes. Would you care to see it?

Re: [users@httpd] Interesting Problem

2012-11-26 Thread Chris Arnold
On Nov 25, 2012, at 11:58 PM, Igor Cicimov wrote: > > On Mon, Nov 26, 2012 at 3:00 PM, Chris Arnold > wrote: >> On Nov 25, 2012, at 10:17 PM, Kevin Castellow >> wrote: >> >>> Yes. That is exactly what a proxy would do for you. >>> Turn on lo

Re: [users@httpd] Interesting Problem

2012-11-25 Thread Chris Arnold
Nov 25, 2012 at 10:14 PM, Chris Arnold > wrote: >> We have a problem and I am trying to either confirm or deny it being an >> apache config mistake. 2 servers, 1 is 192.168.123.3 and 1 is 192.168.124.3. >> On the 192.168.124.3 server we have email; on the 192.168.123.3 serv

[users@httpd] Interesting Problem

2012-11-25 Thread Chris Arnold
We have a problem and I am trying to either confirm or deny it being an apache config mistake. 2 servers, 1 is 192.168.123.3 and 1 is 192.168.124.3. On the 192.168.124.3 server we have email; on the 192.168.123.3 server we have web server. When I go to https://192.168.123.3 I am presented with t

Re: [users@httpd] Can Apache Forward/Proxy a Port?

2012-11-18 Thread Chris Arnold
test failed with: 500 internal server error My rewrite rule is: RewriteRule ^/(.*) https://%{HTTP_HOST}/ [L] - Original Message - From: "Chris Arnold" To: users@httpd.apache.org Sent: Sunday, November 18, 2012 2:16:42 PM Subject: Re: [users@httpd] Can Apache Forward/Pr

Re: [users@httpd] Can Apache Forward/Proxy a Port?

2012-11-18 Thread Chris Arnold
- Original Message - > I have a server that is sharing port 443. I need to use apache on a > different server to forward/proxy https traffic to another apache > server running on a different port, 2443. So, a user types in > https://mail.domain.com and is sent to https://ip.com:2443. Can >

Re: [users@httpd] Proxy Config Issues

2012-11-17 Thread Chris Arnold
> I did read the docs and they were some what helpful but not completely. > Hence, my email to the list. What i am trying to understand is the sections > and what they mean. For instance, ProxyPass /. Does >this refer to what will > be proxied? >>Correct which is the whole document root in this

[users@httpd] Can Apache Forward/Proxy a Port?

2012-11-17 Thread Chris Arnold
I have a server that is sharing port 443. I need to use apache on a different server to forward/proxy https traffic to another apache server running on a different port, 2443. So, a user types in https://mail.domain.com and is sent to https://ip.com:2443. Can apache do this and keep the URL htt

Re: [users@httpd] Proxy Config Issues

2012-11-17 Thread Chris Arnold
>This doesnt make sense you are proxying a domain to itself. Please read the >mod_proxy docs and examples. > ProxyPass /     http://192.168.123.4/somepath/ > ProxyPassReverse /     http://192.168.123.4/somepath/ I did read the docs and they were some what helpful but not completely. Hence,

Re: [users@httpd] Proxy Config Issues

2012-11-17 Thread Chris Arnold
I am trying to proxy http://dls.domain.net traffic to http://private.ip/path/to/page (a different server on our network) but this is not working (i get a bad gateway error from the outside (WAN) and the connection times out on the inside(LAN)). Here is the vhost: ServerAdmin administra...@

Re: [users@httpd] Proxy Config Issues

2012-11-17 Thread Chris Arnold
I am trying to proxy http://dls.domain.net traffic to http://private.ip/path/to/page (a different server on our network) but this is not working (i get a bad gateway error from the outside (WAN) and the connection times out on the inside(LAN)). Here is the vhost: ServerAdmin administra...@

[users@httpd] Proxy Config Issues

2012-11-17 Thread Chris Arnold
I am trying to proxy http://dls.domain.net traffic to http://private.ip/path/to/page (a different server on our network) but this is not working (i get a bad gateway error from the outside (WAN) and the connection times out on the inside(LAN)). Here is the vhost: ServerAdmin administra...@

Re: [users@httpd] Rewrite or Proxy?

2012-10-16 Thread Chris Arnold
All that time to type out this email to you all and i changed it from a rewrite rule to proxy and now things are working as we expect them too. - Original Message - From: "Chris Arnold" To: users@httpd.apache.org Sent: Tuesday, October 16, 2012 1:28:14 PM Subject: [users@http

[users@httpd] Rewrite or Proxy?

2012-10-16 Thread Chris Arnold
A little background on what this host is doing. We have a winblows updates server. The clients on the inside (private ip, LAN) have no problems getting updates from this server. The clients that are not on the inside or connected by VPN do not get the updates from this server. So i write a rule

[users@httpd] 405 Errors

2012-08-16 Thread Chris Arnold
Apache2 2.12 (?) on sles11 sp2. We have a vhost file with the following rule: RewriteRule ^/$ http://192.168.123.2/ This rule points certain traffic to the ip for WSUS (windows software update services). The clients not using this rule work fine but the 2 that do use the rule fail with 405 error.

Re: [users@httpd] Rewrite Rule Help (again)

2012-07-10 Thread Chris Arnold
>You may need to change the R to a P: >RewriteEngine On >RewriteCond %{HTTP_HOST} !^update.domain.com$ [NC] >RewriteRule ^/$ http://private.ip.address/ [P,L] This sends all http traffic to the private ip server >This turns the rule into a proxy to that private IP, assuming that is >what you are

  1   2   >