676 questions
0
votes
0
answers
42
views
Apache Proxy Pass : pass requested URL as GET parameter to destination URL
I am hitting the GET request call where to pass the "id" in the request. Below is the configuration :
ProxyPass /application/(.*)/data/value http://example.com/$1/data/value
when I hit the ...
0
votes
0
answers
13
views
Apache to authenticate web client with different methods and then proxypass request to Tomcat
I have an Apache webserver (frontend) and a Tomcat application server (backend).
I want to allow web clients to authenticate either with SAML or digital certificate and then proxify them to the ...
0
votes
1
answer
32
views
Security considerations when using Apache with SSL enabled and Node.JS without SSL
So I have a peculiar setup to work with. The main server is your standard off-the-mill Apache server with SSL enabled bound to a public domain (NOT localhost!). My Node.JS server runs on localhost:...
0
votes
0
answers
60
views
Configure Nginx to do proxy_pass for UDP
I have two servers, server-1 and server-2 (which is my destination server). I have firewall configured to allow traffic from server-1 --> server-2, UDP port 33055.
I have configured my nginx ...
-1
votes
1
answer
208
views
Using apache 2.4 as a proxy to other services on localhost and others on network
I have at home NAS server with apache 2.4 running on 443 with SSL ok on a ddns domain.
On this server i have other services running like http in nodejs and in python.
I also have other server on ...
0
votes
0
answers
139
views
how to use Apache LocationMatch *after* RewriteRule with QUERY_STRING
I'm using ProxyPass for two URLs (A and B below) that both include a question mark and the string 850: -
A: https://frontend.com/850/home?session=25575 -> https://backend.com/850/home?session=25575
...
1
vote
1
answer
175
views
I need help understanding trailing slash behaviour in Nginx
I'm setting up nginx as a reverse proxy for squaremap (a world map viewer for Minecraft servers) and encountering unexpected behavior with trailing slashes. I've followed the squaremap documentation ...
0
votes
1
answer
523
views
Error 404 when accessing API via Nginx and Express
I have set up a server with Nginx to serve a React application and proxy_pass requests to an Express API. The Nginx configuration includes a location block to proxy requests prefixed with /api/ to my ...
0
votes
0
answers
567
views
Azure container apps using docker nginx proxy_pass to another container
Update 07-05-2024
After some digging, I was made aware that Azure by default uses http protocol http 1.1 between app containers.
After reading through some more nginx docs I discovered that the nginx ...
0
votes
1
answer
240
views
Nginx Configuration: Redirect Specific Path and Preserve URL
I'm configuring Nginx to handle redirects for a domain, but I'm encountering an issue with preserving the URL for a specific path. Here's my scenario:
I have a domain, let's say landing.immancrze.us, ...
1
vote
1
answer
60
views
Apache Alias and proxy pass in the same domain
I have a issue with vhost configuration in Apache/2.4.58
I have a NodeJs frontend and laravel api backend.
This is my vhost:
<VirtualHost *:443>
ServerName backend.mydomain.com
...
0
votes
0
answers
128
views
apache reverseProxy how to proxypass to multi virtualhosts on same localhost and port?
I have an HTTPD apache reverse Proxy in a docker container on my PC. It manages also the authentication toward openidc sso.
Because I need to configure 3 different SSO on same host I configured 3 ...
1
vote
1
answer
284
views
rabbitmq proxy_pass while using nginx on docker
I'm having a bit of a problem with nginx while using proxy_pass
My infra is as following
There is Kubernetes service hosted on AWS and i use ALB ingress controller. there are like 10 application at ...
1
vote
0
answers
297
views
How do I proxy_pass to a unix socket in a server location other than root?
I can proxy_pass using the root location like this:
server {
listen 80;
server_name mysite.com www.mysite.com;
location / {
proxy_pass http://unix:/home/myuser/app/run/gunicorn....
0
votes
1
answer
2k
views
NGINX Reverse Proxy for replacing the specific keyword in the response body
I want to replace the specific text in the response body of the text/html content type pages.
I am using NGINX Reverse Proxy setup for this. When i hit the NGINX base URL it is redirecting to the ...
0
votes
0
answers
133
views
Google sheets through Apache reverse proxy
As on my corporate network google sheets are not allowed I am trying to access it via reverse proxy from my server. All other proxy services I have in my Apache configuration work without problems.
...
1
vote
1
answer
2k
views
replace content string with nginx proxy_pass
I use this content in my subdomain: https://sub.highping.com.tr/lorem
I want replace all "ipsum" strings when nginx_proxy process.
Can I do it whith ngx_http_sub_module ?
So I tried but ...
0
votes
0
answers
28
views
nginx proxy_pass SSL :wrong version number [duplicate]
Error Code: 500:
2023/07/30 09:55:29 [error] 4277#4277: *54 SSL_do_handshake() failed
(SSL: error:0A00010B:SSL routines::wrong version number) while SSL
handshaking to upstream, client: 192.168.0.1, ...
0
votes
0
answers
2k
views
nginx proxy manager how set redirect 443 SSL default host to another local web server apache+nginx+LetsEncrypt
Path config
/nginx-proxy-manager/data/nginx/default_host/site.conf
Internet Client enter brouser site.com or any name (DNS A 777.777.777.777) ->
2.Lan nginx proxy manager (if not found site) (WAN ...
0
votes
1
answer
462
views
Proxy Pass and Document root on the same level on apache server
I have an Angular application running on localhost:3000/app1 and I too have html pages on root level like:
site.com/page1 and site.com/page2
Now I want my site.com to be an angular application which ...
0
votes
1
answer
368
views
/api/auth 404 (Not Found)
What do I need to change on my nginx/sites-available/default config so that it can find /api/auth? I am new to nginx. I believe the issue is in the nginx configuration for proxying requests to the api....
0
votes
0
answers
708
views
Nginx maintenance proxy url
i have a question regarding nginx config.
I have a main page i want to be on maintenance mode. e.g.) url: mypage.com
I have and existing generic website that has maintenance display. e.g.) url: ...
0
votes
0
answers
53
views
Using proxypass and proxypassreverse
I've got a problem using ProxyPass and ProxyPassReverse. Read already a lot of things, but can't get my head around things.
We need to make a connection between our webserver and an application using ...
0
votes
1
answer
860
views
Apache ProxyPass HTTP does not work with SSL
I was trying to add cloudflare SSL certification to the website I host locally, and force HTTPS for all users.
Connecting to IP:80 works fine (from inside my network). IP:443 fails as it expects a SSL ...
0
votes
0
answers
132
views
Cant access NUXT routes when hosted through pm2 and apache proxypass config
I have setup working nuxtjs ssr app using pm2 on the vps linux cloud. Its works well on the localhost. For the online deployment, I use pm2 to get the app running. The app is accessible through the ...