Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 4 of 4
Hi.
Is it possible for me to persist a connection?
Reason... I use NGINX with Swarm, proxy_pass with resolved.
When I have a service with multiple containers, the service cloudcmd does not work because it does not accept replication, because swith each request, Swarm delivers a different IP.
Is it possible to do an upstream that takes an IP and fixes it until it is down? I tried to use k
by
rafael.silva
-
Nginx Mailing List - English
Thanks for the answer.
I tested it with "/", but phpMyAdmin gives a 404 error.
When I do the proxy_pass http://pma:80/ it works perfectly, without the "/" in the end 404 error.
Using the resolver, without the "/" 404 error, with the "/" white screen.
by
rafael.silva
-
How to...
I'm doing an upstream as below:
location /phpmyadmin {
resolver 127.0.0.11 valid=30s;
set $upstream_pma pma;
proxy_pass http://$upstream_pma:80/;
}
And phpMyAdmin doesn't work, it has a white screen. If I change the proxy_pass to http://pma:80/; it works perfectly.
Another location is working perfectly:
location /filebrowser {
resolver 127.0.0.11 valid=30s;
by
rafael.silva
-
How to...
A hello from Brazil.
I worked for years with sysadmin, and today I am venturing into the DevOps world, working a lot with NGINX.
Hello World!
by
rafael.silva
-
New Member Introductions