Questions tagged [proxypass]

ProxyPass in Apache, and proxy_pass in nginx, are directives used to specify which backend or remote server should process the request

ProxyPass in , and proxy_pass in , are directives of the default module that are used to specify which or server should process the .


ProxyPass in :

https://httpd.apache.org/docs/current/mod/mod_proxy.html#proxypass


proxy_pass in :

http://nginx.org/r/proxy_pass

http://ngx.su/src/http/modules/ngx_http_proxy_module.c#ngx_http_proxy_pass

578 questions
0
votes
0 answers

Apache: Running ghost on a subdomain

Does anyone have hints for running ghost on a subdomain with the following apache conf: UseCanonicalName Off VirtualDocumentRoot /var/www/%0/httpdocs (I do not have any sites-available) I tried ProxyPass…
avarx
  • 101
  • 1
0
votes
0 answers

Apache2 ProxyPass / ProxyPassReverse results in 404 for only one out of many directives

Apache2, mod_proxy installed, using reverse proxy for more than a dozen sites, works flawlessly for those. Added one more directive but going to that URL results in a 404 error. For the purpose of this question the apache server is designated as…
Reality Extractor
  • 1,490
  • 2
  • 14
  • 23
0
votes
1 answer

Cas-protected site behind apache reverse proxy

My setup is: Cas server (lets say url https://localhost:8443/cas-server/) A cas-protected website hosted on a tomcat-server, running cas-client (lets say (https://localhost:4448/myApp) A httpd apache2, with mod auth cas, and proxy_http, which is…
0
votes
1 answer

Replacing Apache2 for Varnish as a reverse proxy

I'm having some troubles replacing a Apache2 reverse proxy rule for a Varnish ACL. The apache rule is: ProxyPass http://192.168.0.123/OtherSite My Varnish ACL: if (req.url ~ "^/(?i)MySite") { set…
Renato Todorov
  • 233
  • 1
  • 10
0
votes
1 answer

Proxypass from apache to nginx

How do i convert below proxypass rules from apache to nginx ProxyPass /symptoms-search http://medgle.com/symptoms-search ProxyPassReverse /symptoms-search http://medgle.com/symptoms-search ProxyPass /ajaxmatch.jsp …
ganpya
  • 5
  • 4
0
votes
1 answer

Apache Proxy Pass and Web Sockets

I'm using Apache with the mod_proxy module to reverse proxy my Node.js application through to port 80, so that we can access it as an internal application. I have a file in sites-enabled which contains this: VirtualHost *:80> DocumentRoot…
James
  • 139
  • 1
  • 10
0
votes
1 answer

Can Nginx proxy to an Nginx virtual host?

I've upstream in my http block: upstream backend.example.com { server 127.0.0.1:443; } And within the frontend's server block: location ~* ^/special { proxy_pass https://backend.example.com; include /etc/nginx/conf.d/proxy.conf; } This…
David Hodnett
  • 139
  • 2
  • 6
0
votes
1 answer

nginx rewrite in proxy_pass

I need proxing to different backend but whith same url, so rewriting thould be like this URL: http://myservrer.com/server/monitoring1?(parameters) REWRITE TO: http://1.1.1.1/server/monitoring?(parameters) URL:…
0
votes
1 answer

Using apache ProxyPass to forward URL on new site to old webserver

We are currently moving our site to a CMS, and in the process moving to a different server. There is some code on the older server that we do not want to move to the new server. We want the URLs to be the same, so we have been looking at (and…
jmlumpkin
  • 197
  • 1
  • 2
  • 10
0
votes
1 answer

2 virtual domains: one on port 80 one on port 8080, how?

I've been struggling with this, basically what I want is this: A virtual domain to run on the 80 another virtual domain to run FROM 80 TO 8080 what I've done so far is trying different combinations with apache, but all i got is having all the…
Simone
  • 63
  • 1
  • 7
0
votes
1 answer

Nginx Reverse Proxy as folders

I'm trying to configure Nginx to proxy stuff on a subdomain: dev.int.com I want dev.int.com to be proxied to IP:8080, and dev.int.com/stash to be proxied to IP:7990 Here's my current config file server { listen 80; server_name …
bear
  • 222
  • 1
  • 3
  • 15
0
votes
1 answer

Apache2 proxypass

i'm trying to figure out why my apache2 reverse proxy doesn't work... hope someone can clarify. i'm using an apache server as a gateway with proxy pass: 10.184.1.2 is the IP. these are PP instructions i inserted in the 000-default config…
gatsby
0
votes
1 answer

Using Jira on subdomain and not 8080

I have Jira installed as a service on my Ubuntu VPS on 8080. I've successfully used ProxyPass and ProxyPassReverse to point http://jira.mydomain.com to http://mydomain.com:8080 However, after login, the URL in the browser is changed to…
Sam Hammamy
  • 189
  • 5
  • 17
0
votes
1 answer

SSL certificate for ISAPI redirected Web Site

I have a Win 2003 server and I'm using Ionics Isapi Rewrite Filter to redirect requests made to a Web Site configured in IIS to another Apache2 Server in a server not exposed to the Internet. The Web Site has its host headers configured to catch…
Daniel
  • 1
  • 1
0
votes
1 answer

Apache forwarding to tomcat shows a blank page

I have an application running on tomcat at http://www.example.com:9090/mycontext. The host name in server.xml points to www.example.com. I do not have localhost anymore. I am using apache to forward requests to tomcat using mod_proxy. Things work…
user10211
  • 19
  • 1
  • 5