Exposing Services publicly
Services can be exposed to the public internet with a Service of type LoadBalancer.EXTERNAL-IP column.
Fly.io connection Handlers
Fly.io connection handlers modify your connection before it reaches your application. Learn more about connection handlers. Connection handlers are supported with a custom annotation to a Service object. The annotations have the form:TLS Options
TLS options are used to configure the TLS settings of a service with a TLS connection handler. Fly’s edge will use these settings to terminate TLS for your application. Refer to the documentation for details. TLS options are set using custom annotations. There are 3 annotations, one for each setting:service.fly.io/<exposed port name/number>-tls-alpn- Sets the ALPN for negotiation with clients. Values must be comma-separated.service.fly.io/<exposed port name/number>-tls-versions- Sets which TLS versions are allowed. Values must be comma-separated.service.fly.io/<exposed port name/number>-tls-default-self-signed- If true, serves a self-signed certificate if none exists.
Concurrency limits
Concurrency limits are used to limit the load on your application. By default, the soft limit is set to 20 and the hard limit is set to 25. Learn more about concurrency limits. They can be configured on your Services using custom annotations. There are 3 annotations used to configure the limits:service.fly.io/concurrency-kind- sets the metric used to measure concurrencyservice.fly.io/concurrency-limit-soft- sets the concurrency soft limitservice.fly.io/concurrency-limit-hard- sets the concurrency hard limit
Not supported
We currently do not support:- NodePort Services
- UDP protocol