2,703 questions
0
votes
1
answer
25
views
ORDS 25.2.1 behind Nginx/Tomcat – cookies appearing in page body
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 ...
Tooling
0
votes
0
replies
21
views
Open resty kubernetes frontend
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 ...
0
votes
0
answers
36
views
How to configure ASP.NET MVC (.NET 4.8) app to work under /report location with Nginx?
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 ...
0
votes
0
answers
93
views
Configuring Kastrel in an ASP NET Core WebApi project
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 ...
0
votes
0
answers
25
views
Can I use Deploy Blockscouto without proxy and nginx
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 ...
0
votes
0
answers
163
views
How should I handle the proxy protocol in a Fastify server?
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 {
...
2
votes
0
answers
26
views
SignalR configuration with NGINX CORS
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 =&...
1
vote
0
answers
47
views
Changing the base url generated by url_for
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') }}" ...
0
votes
0
answers
90
views
how to avoid cors errors with nginx proxy in a docker container
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 ...
-2
votes
1
answer
90
views
Logo not loading on dynamically-hosted Dockerized WordPress behind Bunkerweb proxy
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 ...
0
votes
0
answers
32
views
How to make nginx work on deep links when use detail link
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:
...
0
votes
1
answer
340
views
Getting error while hitting my api using domain - Error 502 Bad Gateway
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 ...
0
votes
0
answers
58
views
HA Proxy Route based Config on different port
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 ...
0
votes
1
answer
82
views
Nginx reverse proxy setup for redirects
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/...
0
votes
0
answers
31
views
Handling in a reverse proxy configuration, status code 419 is replaced with 500
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/
...
1
vote
0
answers
95
views
LetsEncrypt through Nginx Reverse Proxy 400 Bad Request for Some Hosts
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 ...
-1
votes
1
answer
149
views
React Router 7 SSR app with Node.js on Linode with Nginx
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 ...
0
votes
1
answer
75
views
Nginx reverse proxy configuration problem
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 ...
0
votes
0
answers
76
views
nginx wont proxy_pass to service on 127.0.0.1:8080 with ssl
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 ...
0
votes
0
answers
66
views
How do I return a response from the destination server in case of an error in Nginx?
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 ...
0
votes
0
answers
225
views
Nginx Proxy Manager: Keep Authentication Session After Closing Browser
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 "...
0
votes
0
answers
62
views
Issues when trying to deploy using Nginx and Docker?
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 ...
-1
votes
1
answer
114
views
looping page after login in apache superset using nginx gunicorn proxy pass
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 ...
0
votes
0
answers
103
views
Issues with ASPNET Identity Google behind NGINX based reverse proxy
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 ...
-1
votes
1
answer
179
views
can't access ngix proxy docker container running on fedora server 41
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 ...