Limit a service to flycast address not public IP

I have a service that has a public web server and a private webserver.

I want the app to be available publicly routing from https to port 1515 but I want the 1616 port to only be available to my fly cast address.

My services look like this. Is it possible for someone to reach my app publicly on the port 1616. I can’t work out what setting makes it not available from an external connection.

Thanks

Dean

[[services]]
  internal_port = 1515
  force_https = true
  auto_stop_machines = true
  auto_start_machines = true
  min_machines_running = 1
  processes = ['app']
  [[services.ports]]
    handlers = ["http"]
    port = 80
    force_https = true  # optional
  [[services.ports]]
    handlers = ["tls", "http"]
    port = 443

[[services]]
  internal_port = 1616
  force_https = false
  [[services.ports]]
    handlers = ["http"]
    port = 1616

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.