UNPKG

@push.rocks/smartproxy

Version:

A powerful proxy package with unified route-based configuration for high traffic management. Features include SSL/TLS support, flexible routing patterns, WebSocket handling, advanced security options, and automatic ACME certificate management.

10 lines (9 loc) 617 B
/** * Forwarding configuration exports * * Note: The legacy domain-based configuration has been replaced by route-based configuration. * See /ts/proxies/smart-proxy/models/route-types.ts for the new route-based configuration. */ export type { TForwardingType, IForwardConfig, IForwardingHandler } from './forwarding-types.js'; export { ForwardingHandlerEvents } from './forwarding-types.js'; export { createHttpRoute, createHttpsTerminateRoute, createHttpsPassthroughRoute, createHttpToHttpsRedirect, createCompleteHttpsServer, createLoadBalancerRoute } from '../../proxies/smart-proxy/utils/route-patterns.js';