Runs a local HTTP server that serves assets to real devices.
Its interface does not cross the network boundary.
Instances of this class cannot be created with Instance.new.
It is a singleton that may be acquired with GetService.
Tags: [NotCreatable, Service, NotReplicated]
Sets the local network interface (address) that the proxy's HTTP server
binds to when it starts. Defaults to an empty string. Assigning a value
schedules the server to restart, but a new interface only takes effect
while the server is running — that is, once
AssetDeliveryProxy.StartServer is true (it defaults to false).
History 3
The TCP port the proxy's HTTP server listens on. Defaults to 0, which
tells the server to pick an available port automatically. While the server
is running, reading this property returns the port actually in use rather
than the configured value. A new port only takes effect when the server
(re)starts via AssetDeliveryProxy.StartServer (defaults to
false).
History 4
Controls whether the proxy's HTTP server is running. Setting it to true
schedules the server to start; setting it to false stops it. Defaults to
false, so the server is off until you enable it. Because the server only
(re)starts while this is true, changes to
AssetDeliveryProxy.Interface and AssetDeliveryProxy.Port
take effect only when this property is true.
History 4