May 2, 20232 yr Newbies Hi, I'm new in FileMaker, so forgive me if that is something simple to solve. My servers: FileMaker Server Ubuntu Ubuntu 22.04.2 LTS FileMaker Server 20.1.1.38 Acme.sh Wildcard SSL IP: 10.10.10.10 (as an example) NGINX Reverse Proxy Ubuntu Ubuntu 22.04.2 LTS nginx/1.18.0 Acme.sh Wildcard SSL IP: 10.10.10.20 (as an example) Windows Pro 22H2 FileMaker Pro 20.1.1.35 Everything works perfectly when connected either by: https://filemaker.domain/fmi/webd/ or https://reverseproxy.domain/fmi/webd/ FileMaker Pro connects ok when using https://filemaker.domain but does not when using https://reverseproxy.domain Error: Connection Failed. The NGINX "currently" is running on the LAN. The config it is using is the one created by "/opt/FileMaker/FileMaker\ Server/Tools/NginxLB/nginxLB.sh", with the change of: from: upstream backend { #using ip hash with nginx open source #hash $binary_remote_addr consistent; #using sticky session with nginx plus sticky cookie srv_id expires=1h path=/; #server 10.10.10.10:443; } to: upstream backend { hash $binary_remote_addr consistent; server 10.10.10.10:443; } Running from the Windows Client: telnet reverseproxy.domain 5003 Connecting To filemaker.pbti.org...Could not open connection to the host, on port 5003: Connect failed telnet filemaker.domain 5003 Works Trying to solve this, I have added in NGINX, this code below, without any result: server { listen 5003; listen 16000; listen 16002; server_name reverseproxy.domain; return 301 https://filemaker.domain$request_uri; } On the reverproxy: tcp 0 0 0.0.0.0:16002 0.0.0.0:* LISTEN 1720/nginx: master tcp 0 0 0.0.0.0:16000 0.0.0.0:* LISTEN 1720/nginx: master tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 1720/nginx: master tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1720/nginx: master tcp 0 0 0.0.0.0:5003 0.0.0.0:* LISTEN 1720/nginx: master What I'm missing?
Create an account or sign in to comment