Hey, I am looking for a solution to the networking problems that I have been getting recently, namely Server list query returned an error
error logs in the server console:
Most players can’t connect to the server, with a few exceptions, and the custom connection link cannot be reached on HTTPS, only on HTTP (even then it only returns a default Apache page).
In Cloudflare, I have an A DNS record pointed to the VPS’ IPv4 address (partially redacted):
As well as an SRV record as follows:
(Removed)
There are some other DNS records for email forwarding and the website, which I can send if needed to solve the issue.
The current SSL/TLS encryption is set to Full. I have tried to add a new origin certificate to the server and use Apache, but with no luck. Then I reverted to nginx which used port 80 before the issues, but that didn’t resolve the issues either. Looking at it, it was never even seemed to have been configured, so I don’t know how it worked in the first place.
The 30120 port seems to be properly setup:
The server config that is related is as follows (as I mentioned, the subdomain for connections doesn’t work on HTTPS, so adding sv_listingHostOverride won’t work):
endpoint_add_tcp "0.0.0.0:30120"
endpoint_add_udp "0.0.0.0:30120"
Update:
I tried to follow the FiveM proxy setup guide, but with no luck. I also looked at the linked GitHub guide, but was given port bind errors when trying to run nginx and the FiveM server at the same time.