Cloudron CLI and NGINX Routing Weirdness
-
-
My "band-aid" solution doesn't even work anymore. Even tried to reboot the server. Nginx has literally cached the domain name thinks it already exists when being called. I'll just have to alternate domain names when doing re-installations until the cache expires. I'm just glad I know why I've been encountering that error and really glad it doesn't affect
cloudron update
. -
@robi I tested it with different browsers. And the Nginx logs directly say “domain name conflict”. It is something cached in NGINX, I think. But if it is is related to browser caching. I’ll test it more thoroughly - it’s incredibly easy to reproduce.
-
@robi said in Cloudron CLI and NGINX Routing Weirdness:
what happens if you reload nginx config?
what happens if you restart nginx w/ same config?
what happens if you restart nginx w/ diff config?The NGINX config file for the new installation is correctly written so that's not the problem.
It's just the domain hits nginx and then it goes to read the .conf file - but there are two for the same domain (in a cache somewhere I can't find), and it conflicts and sends me a 503 gateway error since NGINX doesn't know whether to choose the old .conf or the new .conf. Just gotta find where in the code that
box
feeds nginx the .conf file. Probably somewhere inreverseproxy.js
. -
@Lonk it doesn't read a config file on access, it loads it into memory at start time and if there's multiple entries, they override each other the latest one being the one that is taken, otherwise the load fails with an error.
There should be a way to dump the running (mem) config of nginx and monitor it during the uninstall process.
-
@robi You see this is one of those things that I don't have enough motivation to fix. I'll just avoid the flow entirely by constantly using different names to avoid the cache and rotate back when it somehow magically leaves the cache - unless @girish and / or @nebulon fix it one day or encounter it themselves and fix it. I just don't have the motivation to fix this, though usually I do. I'm just so done with NGINX man, the Open VPN Client scarred me. I never wanna go into
reverseproxy.js
ever again. -
Okay, maybe I will try to figure it out. I just tried setting it back to my preferred domain name and it failed because of domain name conflicts sooooo, I'm going to have to figure this out now. Dang it.
Edit: It's been a day so any cache would be gone, maybe I'll just do a re-nstall of Cloudron itself.
-
Well, it's definitely a NGINX issue:
root@server:~# sudo nginx -t nginx: [warn] conflicting server name "vpn.viridiancloud.com" on 0.0.0.0:80, ignored nginx: [warn] conflicting server name "vpn.viridiancloud.com" on [::]:80, ignored nginx: [warn] conflicting server name "vpn.viridiancloud.com" on 0.0.0.0:443, ignored nginx: [warn] conflicting server name "vpn.viridiancloud.com" on [::]:443, ignored nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
I tried clearing the cache. And restarting the NGINX service. But maybe they store the nginx cache in a different place. I hate working with nginx.
-
@robi It has nothing to do with the VPN, the VPN has a front end client and it can be off, but even if it's off NGINX still conflicts with itself like it was in some kind of cache I couldn't find and I wanted the domain name back on the app so I re-installed.
-
@robi said in Cloudron CLI and NGINX Routing Weirdness:
What happens when you switch the domain to vpn2?
If I switched the domain to vpn2 it would just work. The domain name is being cached by NGINX in a way I don't understand so I just re-installed.
-
@robi said in Cloudron CLI and NGINX Routing Weirdness:
@Lonk yes, you said this already.
what's different in
nginx -t
or other relevant place?Well
nginx -t
saidconflicting server name "vpn.viridiancloud.com"
four times or so when I used it in the command line, and since that gave me no new information I gave up. Pick your battles! -
@robi said in Cloudron CLI and NGINX Routing Weirdness:
@Lonk sigh, the question was what's different with vpn2...
Well, changing the
location
, it creates a completely new container including network / port changes. Butrepair
ing the Cloudron app, didn't fix it so it wasn't the container or the network itself. Hmm, maybe I'll still look more into this problem cause I still am curious, I just need to ask a question first on the dev forum about remote SQLing into Cloudron's App DB first before I dive further as there is one last thing I need to solve it. -
Well, at least I can say with confidence that backing up, then re-installing Cloudron completely fixes the issue. But I did a full restart of the server and that didn't fix it so it's not exactly a "cache" issue. I'll do more testing since I can repoduce it.