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
1 answer

ProxyPass not working - Apache2

ServerAdmin callumokane123@gmail.com ServerName server.maniabots.xyz ProxyPreserveHost On ProxyPass / http://localhost:3000/ ProxyPassReverse / http://localhost:3000/ The above, which I have used before on other…
Callum OKane
  • 103
  • 3
0
votes
0 answers

Can I use snap to install nextcloud on a server already running Apache?

Nextcloud is an open source cloud data server. On OS's with snapd you can install the whole thing as a snap: sudo snap install nextcloud That seems magical, but I am stuck there. My server was already hosting various domains using Apache, and I do…
CPBL
  • 101
  • 4
0
votes
0 answers

Nginx reverse proxy-Hide server ip address

I have configured nginx as reverse proxy with many addresses configured in backend section. This is configuration: upstream backend { server xxx.xxx.xxx.xxx:4000;} server { listen 1337 default_server; listen …
VeseliD
  • 1
  • 1
  • 2
0
votes
0 answers

Nginx: How to map the internal Ip addresses and proxy using ngrok without redirecting

I have two device which can be accessed only using internal network. To access it externally i have installed nginx in raspberry device and added a redirect within nginx like location /device1 { return 301 http://192.168.0.1:80 } Similarly…
Harsha
  • 101
0
votes
0 answers

nginx Listening But Not Responding on non-80/443 Port

nginx on Mac OS X is running via brew successfully on ports 80 and 443. However, I am trying to run on a different port 18000 and nginx does not want to respond, despite listening to the port. server { listen 18000 ssl; server_name …
0
votes
1 answer

NginX cannot redirect to React App

I'm quite new to NginX, so my apologies if anything I ask here sounds naive. Lets say I have a DNS www.example.com. Whenever a request comes to www.example.com/ (only /), I want NginX to redirect it to www.example.com/home, which in turn will…
Auro
  • 111
  • 1
  • 5
0
votes
2 answers

Redirecting webhook with nginx

I am changing the domain name of my app from old.com to new.com My app is connected to external APIs that send data through webhooks, and I would like to redirect the webhooks sent to the old url, so that they hit the new url and get processed. I…
Buno
  • 155
  • 2
  • 9
0
votes
1 answer

reverse proxy - understanding proxy pass - apache mod_proxy

im running tomcat on my linux server and i want use a reverse proxy for this. After reading the manual in apacha for mod_proxy , i didnt really understand the /path in the proxypass . i make a small example. the directory for my tomcat is…
beard black
  • 67
  • 2
  • 14
0
votes
0 answers

nginx reverse-proxy a single URL to a custom server single URL

I have designed a page on a static page provider, and I'd like to make it available when browsing a domain I own www.example.org (which hits a nginx server) Target : https://www.example.org/a/b --> https://static-page-provider.com/c The user types…
-1
votes
1 answer

Apache server - Unable to locate CSS and JS files

I want that when i hit URL A, it should serve content from URL B but the URL on the address bar should keep pointing to URL A only. URL A: http://apps.company.com/lab URL B: http://svrdev-73:6020 To try this out, in hosts file, i have configured…
Technext
  • 147
  • 2
  • 8
-1
votes
2 answers

Running Jenkins with apache at /jenkins

I need to have access at the /jenkins path to the Jenkins server. This is what I have now in my apache configuration: ProxyPass /jenkins http://localhost:8080 ProxyPassReverse /jenkins http://localhost:8080 When I go to example.com/jenkins, I get…
DrKaoliN
  • 109
  • 1
  • 6
-1
votes
2 answers

Client Denied By Server Configuration Appache Reverse Proxy

This is driving me stir crazy and I have researched across the Internet trying various answers none of which have worked. I am using Apache 2.2.9 for Windows and my httpd.conf is as follows: NameVirtualHost *:80
Andy5
  • 145
  • 1
  • 3
  • 10
-1
votes
1 answer

nginx proxypass for video/audio from amazon cloud drive

I have a mp3 file on my amazon cloud drive: How can I make nginx proxy_pass to play this audio on chrome? I need to get content range header, then send the content-range header to proxy server. Configuration: location /match/here.mp3 { …
-1
votes
1 answer

Use nginx as proxy to a sites.google.com site

I'm trying to create a proxy_pass to a sites.google.com site. It works.. kinda. The site appears somewhat different when I access it through the nginx proxy. My configuration: location /gtis { proxy_set_header HOST sites.google.com; …
tessiof
  • 1
  • 1
  • 2
-1
votes
1 answer

proxypass ajp with apache and tomcat for multiple websites

I have Website running on Tomcat on port 8080 with ProxyPass enabled. Now I want to install WordPress on Apache say www.domain.com/blog. I tried various combinations in Apache but without any luck. I have following configuration in Apache which…
niteshd22
  • 101
  • 1
1 2 3
38
39