All Questions
Tagged with nginx reverse-proxy
19 questions
0
votes
0
answers
35
views
Slow performance of nginx as reverse proxy
I use nginx as a reverse proxy in the following configuration: Ubuntu 22.04, nginx 1.18.0, access to two web services on host A and host B, which are accessible via https://a.foo.com:8443 and https://...
0
votes
0
answers
54
views
Nginx stopped doing it job: cant bind to ports, doesn't reverse proxy
Well, I tried to self-host and reverse proxy a webpage for my self-hosted discord bot with this guide, but it wasn't really working for me: I have the bot's webpage enabled w/ auto-startup, I have ...
0
votes
0
answers
126
views
NGINX reverse proxy with Apache shows default Apache index page
I have a server that had Apache installed first. Subsequently I installed NGINX in order to have it reversed proxy to Apache.
According to /etc/apache2/ports.conf Apache listens to port 8090
Listen ...
0
votes
0
answers
395
views
Forwarding https requests to http with Nginx
I'm trying to use Nginx on a Server A (Ubuntu 22.04) to:
Force the client to use https.
Forward requests to a Server B (also Ubuntu 22.04) so that they are http only. It has a Apache2 web server ...
3
votes
1
answer
6k
views
Portainer docker container behind Nginx reverse proxy
I have set up an nginx reverse proxy on an Ubuntu 22.04 server and I have successfully obtained ssl certificate from lets encrypt. The two keys are stored here:
/etc/letsencrypt/live/test.ddns.net/...
1
vote
1
answer
128
views
A complex configuration. How can I get my web server's browser to access a web site served from the same server?
Server is setup with the full desktop install of Kubuntu Linux 18.04LTS. I Nginx, and Apache2 installed. I also have Gogs installed. And I have 4 cert's from Let's Encrypt installed.
From a web ...
1
vote
1
answer
6k
views
Nginx as SSH gateway?
I have a server which serves some other systems via LXD, using Nginx as reverse proxy for accessing them on HTTP.
Now I want to give shell access to one of them to a friend. In fact, I want to be ...
-2
votes
1
answer
189
views
how to redircet VPS ip to the https domain?
i'am using a VPS ubuntu 18.4 and i have been installed nginx and certbot to redirect the ERP system website form from 8069 to 80
to be linked with the domain name everything is going well
if i write ...
0
votes
1
answer
1k
views
Nginx rule restricting particular page to render only on private ip
I'm using keycloak and it is running on public ip and admin console also accessible via public ip and I'm using nginx web server.
I have a requirement that the admin console should be accessible only ...
0
votes
1
answer
4k
views
nginx as reverse proxy with failover
I am running a wordpress website in a such a way that my frontend is managed by Nginx. Nginx forwards All the dynamic content to varnish and varnish subsequently forwards to apache. Now i want to ...
2
votes
2
answers
12k
views
Run Pgadmin4 behind reverse proxy
I'm trying to run pgadmin4 behind an Nginx reverse proxy but I'm having an issue because I need for pgadmin to know it is at myhost.com/pgadmin and not simply at myhost.com.... or at least I think ...
2
votes
2
answers
3k
views
nginx and apache2 on same server
I have ubuntu 16.04 with nginx and apache2. There are 2 DNS A records pointed to this machine:
app1.mydomain.com
app2.mydomain.com
I need app1.mydomain.com to be resolved by apache and app2....
1
vote
2
answers
3k
views
How can I make Logitech Media Server available without specifying a port number?
Logitech Media Server is a streaming audio server formerly by Slim Devices known as SlimServer. It streams audio to Squeezebox devices (by Logitech), and third party devices, like Raspberry Pi-based ...
0
votes
0
answers
1k
views
Nginx Reverse Proxy : how to redirect https to 2 similar server?
I need to update my nginx config to add some redirection to 2 similar servers (PABX servers).
Internally, both of them can be joined at https://internal_FQDN/.
So, now I need to have access to them ...
1
vote
0
answers
6k
views
Nginx, reverse proxy : how to redirect https to http?
Beginner in nginx, I have to understand how to configure a reverse proxy for redirecting https requests to http :
Actually, my nginx is configured to redirect https request to differents servers (in ...
3
votes
1
answer
1k
views
Get Apache2 running with nginx as reverse proxy
My goal is to provide a secure email service from a new Ubuntu 16.04 server. In order to do this, I want to set up Apache2 with nginx running as its reverse proxy.
My immediate problem is that Apache ...
0
votes
1
answer
260
views
E3 Ubuntu Steps for Nginx proxy pass a port to port 80
I'm running a fresh Ubuntu 16.04 server using Amazon E3. I edited /etc/nginx/sites-enabled/default to read:
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name ...
1
vote
1
answer
1k
views
IP based load balance in nginx
I have two Backend server running on 192.168.0.101:8080 and 192.168.0.102:8080.
I have nginx running on 192.168.0.111:80, I want to force nginx to reverse traffic in specific backend srever by IP.
...
6
votes
2
answers
20k
views
Forwarding Multiple port to Single port using nginx
I want to proxy pass all requests coming from a series of ports into single port.
I am able to proxy pass a single port to another like so:
server {
listen 3333;
server_name test.in *.test.in;...