[users@httpd] Issue with REST API payload response

2018-09-20 Thread Christina Carmosino
Hi everyone! We have a Java application deployed to a WebLogic application server as well as a separate Sencha ExtJS based application deployed directly to the document root of our Apache server. Apache is configured to reverse proxy the requests to the backend Java application and the Sencha

Re: [users@httpd] Want to Deploy Web App Behind a Reverse Proxy

2018-09-20 Thread Filipe Cifali
Osman, I think you really need to understand the things you are using before trying to actually use them. You need to have an IP address to point the proxy, even if it's 127.0.0.1 on some random port like 3000. You don't really need to pay for a domain, there are "free" services that provide

[users@httpd] Apache PHP-FPM unix domain sockets questions

2018-09-20 Thread Rose, John B
After looking at the documentation on httpd.apache.org and wiki.apache.org I have a few questions ... 1. I have seen examples of both "ProxyPassMatch" and "SetHandler" used to implement Unix Domain Sockets. Which is better? 2. On the wiki page it says "Using too many sockets will

Re: [users@httpd] Want to Deploy Web App Behind a Reverse Proxy

2018-09-20 Thread Osman Zakir
If I'm using a reverse proxy, do I need the IP address of the reverse proxy server? And if so, how do I get the IP address of the reverse proxy server (if you don't want to tell, please point me to a resource I read about it on)? I got a free subdomain name from subdomain.net. So do I put

Re: [users@httpd] Want to Deploy Web App Behind a Reverse Proxy

2018-09-20 Thread Eric Covener
On Thu, Sep 20, 2018 at 10:57 AM Osman Zakir wrote: > > I haven't changed what I'm saying my problem is that much. I'm probably > having a hard time explaining it. > > The host name seems to be the main problem, though, aside from the > environment variables. I don't have a host name. I'd

Re: [users@httpd] Want to Deploy Web App Behind a Reverse Proxy

2018-09-20 Thread Osman Zakir
I haven't changed what I'm saying my problem is that much. I'm probably having a hard time explaining it. The host name seems to be the main problem, though, aside from the environment variables. I don't have a host name. I'd prefer it if I could get a free subdomain and get my server to

Re: [users@httpd] Reverse proxy

2018-09-20 Thread Frank Gingras
Listen 8001 and Listen 127.0.0.1:8000 would do it. On Thu, Sep 20, 2018 at 7:58 AM @lbutlr wrote: > If I have a secondary web service service running on www.example.com:8000 > and I want to create a reverse proxy on port 8001, how do I prevent users > from connecting to :8000 anyway? > > > >

[users@httpd] Reverse proxy

2018-09-20 Thread @lbutlr
If I have a secondary web service service running on www.example.com:8000 and I want to create a reverse proxy on port 8001, how do I prevent users from connecting to :8000 anyway? - To unsubscribe, e-mail:

[users@httpd] Re: DocumentRoot in ProxyPass?

2018-09-20 Thread @lbutlr
On 19 Sep 2018, at 14:41, Eric Covener wrote: > On Wed, Sep 19, 2018 at 4:35 PM @lbutlr wrote: >> >> Is it possible to do something along these lines in the apache.conf files? >> >> DocumentRoot /usr/local/www/roundcube/ >> ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000${DocumnetRoot}$1 >>

[users@httpd] REMOTE_USER is not available at the time of external function call in httpd RewriteMap

2018-09-20 Thread Chudamani Padhan
Hi, I am trying to set HTTP basic auth header for an user which is already authenticated by external application. For doing that, we have to set base64 encoded of "username:dummy" where password is any dummy value. In ssl config, REMOTE_USER is getting captured properly in RequestHeader(Line 5)