Porter
Last updated
Last updated
Porter can be described as the “Infura for TACo”. Porter is a web-based service that performs TACo-based protocol operations for applications.
Its goal is to simplify and abstract the complexities surrounding the TACo protocol to negate the need for applications to interact with it via a Python client. Porter introduces the TACo protocol to cross-platform functionality, including web and mobile applications.
Any publicly available Porter can be used to interface with the Threshold Network, or some application developers opt to run their own.
Public Porter instances are operated by centralized entities and have different security properties than user-operated instances. If you're interested in running your own Porter, see Running a Porter Instance
To use the default Porter URIs in taco
, run:
Alternatively, you can use your own non-default Porter URIs.
Managing a Porter instance on mainnet
is more involved than operating a mainnet node, requiring solid server administration skills. This includes understanding how to provision and secure servers, applying security best practices, and maintaining consistent system performance. Key competencies like network configuration, SSL/TLS encryption, and CORS, are also essential to ensure the secure and efficient operation of your Porter instance.
By default, Porter runs over HTTP. However, Porter instances must be secured with a valid HTTPS certificate in order to be compatible with network applications. A Porter instance running without SSL/TLS is not only insecure but also browser-based apps and websites will be unable to connect.
To secure your Docker-run Porter instance with HTTPS, use a reverse proxy like Nginx or Apache for SSL processing, and potentially Let's Encrypt for automated SSL certificate issuance and renewal. Additionally, consider using cloud-based services like AWS/Digital Ocean load balancers or Cloudflare for SSL termination and enhanced security.
HTTPS: To run the Porter service over HTTPS, it will require a TLS key and a TLS certificate.
CORS: Allowed origins for Cross-Origin Resource Sharing (CORS)
Authentication: Optional usage restriction (non-public instance) via authentication protocols, e.g. basic authentication, etc. if desired
Get the latest porter
image
Run Porter HTTP Service on port 80
The command above is for illustrative purposes and can be modified as necessary.
Porter will be available on default port 80 (HTTP)
View Porter logs
Stop Porter service
View the Porter Github repos for more information.