Apache Reverse Proxy
I've to setup a reverse proxy on the same server my Webserver runs. So I want to redirect:"https://servername/logs" Opens a new window to my Webserver.Reverse proxy:ApacheNameVirtualHost10.5.3.200:443...
View ArticleApache Reverse Proxy
Is there any reason you don't just scrap the reverse proxy idea and just have SSL enabled on your main site?I'm not sure why you are using a reverse proxy to the same server, generally you use it to...
View ArticleApache Reverse Proxy
I sould have mentioned that sry. The Webapplication needs to talk to Elasticsearch which is some kind of Indexing Database. Elasticsearch doesn't have any Authentication/Authorization modules. So I...
View ArticleApache Reverse Proxy
Patrick W. wrote:I sould have mentioned that sry. The Webapplication needs to talk to Elasticsearch which is some kind of Indexing Database. Elasticsearch doesn't have any Authentication/Authorization...
View ArticleApache Reverse Proxy
I'm saddly restricted to Apache :-/.What do you mean with "Just roll it all into the one vhost and then see if the proxy works or not."?
View ArticleApache Reverse Proxy
You're requesting https://servername/logs Opens a new window- file, but you're proxying /logs/ - directory, that's most likely your problem. Test it by going to https://servername/logs/ Opens a new...
View ArticleApache Reverse Proxy
In that last rule, there's a trailing / after logs. Text editor trimms it :(
View ArticleApache Reverse Proxy
Now the application tries to get it's dependencies from the /srv/www directory, for Example:[Tue Mar 11 13:39:58 2014] [error] [client 10.5.4.12] File does not exist: /srv/www/css, referer:...
View ArticleApache Reverse Proxy
AddApacheProxyPass/css ! just aboveApacheProxyPass/logs/ http://10.5.3.200
View ArticleApache Reverse Proxy
doesn't seem to work :-/[Tue Mar 11 13:57:12 2014] [error] [client 10.5.4.12] File does not exist: /srv/www/css, referer: https://spufi002/logs Opens a new window[Tue Mar 11 13:57:12 2014] [error]...
View ArticleApache Reverse Proxy
My fault I opened the webpage via /logs instead of /logs/Thanks a lot
View Article