Skip to main content
Stack Overflow for Teams is now Stack Internal: See how we’re powering the human intelligence layer of enterprise AI. Read more >
Filter by
Sorted by
Tagged with
0 votes
1 answer
25 views

Environment: - ORDS 25.2 deployed on Tomcat 9.0 - Java 17 - Database and APEX on separate servers (PaaS) - Reverse proxy: Nginx Problem: After upgrading to ORDS 25.2.1, the APEX layout breaks. Some ...
Flavia Cabral's user avatar
0 votes
0 answers
47 views

Can someone help me out why nginx returns a 403 Unauthorized for .js files, but other files work: I have a file /etc/nginx/sites-available/my-server.nl: server { listen 80 proxy_protocol; ...
Yaris van Thiel's user avatar
Tooling
0 votes
0 replies
21 views

User-->Load abalancer-Frontend VPC-Openresty Nginx --->Router-->Priv LB -->Kubernetes I want to ask about Openresty in Kubernetes. I am using it now as reverse Proxy as Tasks in AWS and ...
joharger's user avatar
3 votes
1 answer
272 views

Description of the bug Description of the bug Using Vaadin with Spring Boot, and when I try to download a file using the DownloadHandler.fromInputStream API, the download is being interrupted after ...
MarekChr's user avatar
  • 1,174
0 votes
0 answers
36 views

I have an ASP.NET MVC application (on .NET 4.8). Currently, the DevOps team has set up Nginx to handle requests with: location: / and this works fine. Now they want to change the setup so the ...
yousef saeedi's user avatar
0 votes
0 answers
105 views

I have been trying to setup Argocd with EKS, helm chart and AWS ALB behind a proxy( nginx ingress) and it not working at all. After deployment to eks cluster, if i do port-forawarding, the UI works ...
Shammir's user avatar
  • 999
0 votes
0 answers
91 views

I have an ASP NET Core WebApi application. I have already deployed my API on a real server, and I have Nginx running as a reverse proxy server behind it. I would like to understand how to properly ...
Артур Дементьев's user avatar
0 votes
1 answer
506 views

all, thanks for reading. I have a keycloak server running locally in Docker. I want to make it accessible only through a reverse proxy. I managed to get that working with an nginx.conf that looks ...
John M's user avatar
  • 332
0 votes
0 answers
25 views

I want to know if Blockscout can be used without any reverse proxy like Nginx, or if it's possible to change the default proxy port from 80:80 to another one (for example, 8080:80 or 3000:80). I tried ...
PekoyamaPeko's user avatar
0 votes
0 answers
70 views

Here is my current nginx.conf: http { server { listen 80; server_name domain.co.uk; return 301 https://$host$request_uri; } server { listen 443 ssl; ...
jdev9487's user avatar
  • 161
0 votes
0 answers
160 views

Nginx config: stream { map $ssl_preread_server_name $backend_upstream { api.xxx.com backend_1; } upstream backend_1 { server 127.0.0.1:4433; } server { ...
wiwiwi's user avatar
  • 1
1 vote
1 answer
137 views

I have made a MEAN stack application and want to containerize it using docker for publishing on azure app services. To do so i created 3 service, the client, the server and the nginx for handling the ...
Jeroen's user avatar
  • 11
2 votes
0 answers
26 views

In my .Net backend I have a ApiGateway project that has the following configuration in my Program.cs app.UseCors(x => x .AllowAnyMethod() .AllowAnyHeader() .SetIsOriginAllowed(origin =&...
Febertson's user avatar
  • 514
0 votes
0 answers
38 views

I am running one nginx container webhost1 which have php extension and giving heartbeat (simple html website which returns a random value between 1..1000: Example: heartbeat=34) which is running fine,...
Ravi kant Gautam's user avatar
1 vote
0 answers
47 views

I'm using Jinja2 to throw some templates in a FastAPI project. I'm trying to import my css/js, and as per the FastAPI docs, I did <link href="{{ url_for('static', path='/styles.css') }}" ...
Rohit's user avatar
  • 3,230
1 vote
0 answers
36 views

I've been working on a simple React app using create-react-app. Everything is going great but I wanted to test accelerometers specifically testing if a tablet is turned upside down. Also I want to ...
chrislondon's user avatar
  • 12.6k
0 votes
0 answers
90 views

i have a docker compose file which creates a bunch of containers which provide different web services. they all run on port 8080. so my idea was to put them all into one network and use an nginx ...
pcace's user avatar
  • 746
0 votes
1 answer
152 views

I am receiving the following error in the nginx error log: SSL_read() failed (SSL: error:0A000126:SSL routines::unexpected eof while reading) while processing HTTP/2 connection However if I navigate ...
Matthew Hirons's user avatar
-2 votes
1 answer
90 views

I’ve set up WordPress in a Docker container on my home server and later migrated it to another server that’s behind BunkerWeb as a service. I’ve configured everything as follows: Original development ...
Enis K's user avatar
  • 11
0 votes
0 answers
99 views

I'm trying to create an NGINX endpoint that will validate the session using auth_request directive and return the auth-token in a header without a response body. location /whoami block in config below....
Sergei's user avatar
  • 149
0 votes
0 answers
32 views

I create a site which domain is https://resume.my.site. What I'm trying to accomplish is to reverse proxy to https://my.site/resume when a user accesses https://resume.my.site my config file is like: ...
pnkj's user avatar
  • 528
0 votes
0 answers
35 views

I have three URLs for which I want to do a reverse proxy. (Also, the URLs can have an optional '/' at the end.) /test /test/id test/id/{id_number} So far I am writing the nginx config for the first ...
Watermelon's user avatar
0 votes
1 answer
337 views

My backend is in nodejs, hosted on VPS, using nginx for reverse proxy. After certain recent merges I have started getting 502 Bad gateway error <html> <head> <title>502 Bad ...
Tech Admin's user avatar
-1 votes
1 answer
174 views

I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening on port 443 and using the certificates, ...
Jean-Loup's user avatar
  • 398
0 votes
0 answers
58 views

I have below haproxy config. frontend main bind :443 ssl crt /etc/haproxy/example.uat.pem ciphers DEFAULT:!LOW:!RC4-SHA:!RC4-MD5:!DES-CBC-SHA:!DES-CBC3-SHA no-sslv3 no-tlsv10 no-tlsv11 bind ...
Arpit Gupta's user avatar
0 votes
0 answers
43 views

I have set up a frontend application (React) and a backend application(Java—Spring Boot) on my droplet. I am running an Nginx webserver with SSL certification. I can't get my front end to call my back ...
TheEagle's user avatar
0 votes
1 answer
82 views

I have an website running in https://localhost:7443/__admin. I have nginx running in the same host in https://localhost:8443. I want the users to launch the webapp with the url https://localhost:8443/...
Rohit12's user avatar
  • 53
1 vote
1 answer
464 views

We have a ZKTeco MB10 Attendance Device I have successfully installed it, and connected to the BioTime 9.5 that we are hosting on a VPS, I have pointed a subdomain record to the the VPS ip address and ...
Arbaz Ahmed Mughal's user avatar
0 votes
0 answers
31 views

Local Development Environment. I have touched a little the template file with which the nginx configurations are generated, the result is the following: # from nginxproxy/nginx-proxy # uknp.dock/ ...
Francisco IA Lover's user avatar
0 votes
0 answers
27 views

map $arg_internal $redirect { default 0; "true" 1; } server { #Swap the following two lines to get the redirect working again server_name developer-nonprod.com; listen ...
Girish's user avatar
  • 2,476
1 vote
0 answers
94 views

I have an Nginx Docker container routing all HTTP/S requests. HTTPS is working fine but recently LetsEncrypt ACME challenges have been failing for some hostnames routed through this container and I ...
MeCJay12's user avatar
1 vote
0 answers
32 views

I'm pretty new to nginx and would love some insight on how to get this to work. Basically I have a proxy set up for my angular app that I want users to use. If it is a google bot, I want to check if I ...
Jeremy's user avatar
  • 23
-1 votes
1 answer
149 views

I have an SSR React Router 7 (framework version) Node.js/Express application that I am trying to wire up to a domain, which is running through Linode. I set up my domain on Linode, and updated ...
Lushmoney's user avatar
  • 530
0 votes
0 answers
97 views

I have an environment variable set as vod_enable_encryption = yes which I'm attempting to check using an If block in nginx.conf. Nginx isn't able to resolve the condition and throwing the following ...
Earthling's user avatar
  • 489
0 votes
1 answer
74 views

I have the follwoing nginx configuration : server { listen 80; server_name /*public ip address here , did not want to share it*/; # listen 80; # server_name _; Proxy requests to ...
makasa29's user avatar
0 votes
1 answer
68 views

I have a Vue.js application running inside a Docker container with Vue Router set to history mode. The app works fine when navigating through links, but when I refresh the page or visit a route ...
eilwa's user avatar
  • 11
0 votes
0 answers
76 views

I am trying to proxy_pass to a local service (fossil scm) on http://127.0.0.1:8080. http://scm.domain.de and https://scm.domain.de returns ERR_CONNECTION_REFUSED. https://scm.domain.de:8080 returns ...
Deniz's user avatar
  • 1
0 votes
0 answers
260 views

I have a problem when connecting to my reverse proxy v2ray + nginx hosted on Linux Ubuntu 24.04 virtual machine. v2ray configuration I use (/usr/local/etc/v2ray/config.json): { "log": { ...
Sergey's user avatar
  • 1
0 votes
0 answers
66 views

I need to always return in case of errors. 400, 401, 403, 404, 500... my html pages with errors if the response is from the destination server is text/html, otherwise I can return the server's ...
JkLSweetMint's user avatar
0 votes
0 answers
51 views

I have a VM where I was hosting a website my_url.com via Nginx. I removed the SSL certficate via Certbot's sudo certbot delete. After that I removed /etc/nginx/sites-available/my_url.com and /etc/...
pip's user avatar
  • 37
0 votes
0 answers
223 views

I’m using Nginx Proxy Manager and have set up several proxy hosts secured with an Access List (username and password authentication). This generally works fine, but sometimes I get an "...
Ammy's user avatar
  • 33
1 vote
0 answers
44 views

I have set up Nginx to run on a VPS server and installed SSL using LetsEncrypt. Both Nginx and LetsEncrypt are typical standard installation on the server machine running Ubuntu. I then loaded ...
rambomambo79's user avatar
0 votes
0 answers
62 views

I’m deploying my backend using Nginx and Docker (containerized DRF app), but I’m encountering an issue when trying to access the admin panel. I get the following error: 403 Forbidden – CSRF ...
SoftheProg's user avatar
1 vote
1 answer
61 views

I am trying to figure out a simple way of writing an nginx proxy_pass condition where depending on the URL called upon (e.g. /go/192.168.0.10) the proxy_pass would take the IP after the /go/ and proxy ...
kasonne's user avatar
  • 35
-1 votes
1 answer
112 views

need help in apache superset. I've install apache superset in AWS Amazon Linux. If i run using terminal and open the apache superset using ip and port 8088 , it work's fine. Nothing error. But if i ...
Daily Food ASMR's user avatar
0 votes
0 answers
37 views

As you can see from the title, I want to create a structure like the one in the image, but I could not achieve this by reverse proxying a normal domain. What should I do? image idea or solution on how ...
Emre's user avatar
  • 1
0 votes
0 answers
103 views

I'm in the process of adding Google Authentication to .NET 8 web app behind NGINX reverse proxy. App itself is simple CRUD web app. I do have Let's Encrypt certificate for https, it is terminating on ...
Gytis Murauskas's user avatar
1 vote
0 answers
61 views

I am using Nginx as a reverse proxy to forward requests to Telegram Bot API in order to reduce rate-limiting on my server. My Nginx configuration works fine when I only proxy to my local Bot API ...
javad moones's user avatar
-1 votes
1 answer
178 views

Im having trouble accessing nginx proxy admin running in docker container on fedora server 41. I have ports 443,80,81, 9090 open on my router. im able to login to my fedora server cockpit gui with ...
Vishal Desai's user avatar
0 votes
1 answer
64 views

I have the following nginx docker working as a reverse proxy: location /dev { proxy_pass http://dev-server.com; } When trying to running docker, I get: host not found in upstream "dev-server....
matias reyna's user avatar

1
2 3 4 5
55