Files
caprover/src/models/IServerBlockDetails.ts
T
sean-nicholas 3dbc3f8f89 add websocket support
- add a new config "websocketSupport" to the app definition
- use this config to add "upgrade headers" to nginx config
2019-08-11 15:45:02 +02:00

17 lines
382 B
TypeScript

interface IServerBlockDetails {
hasSsl: boolean
forceSsl: boolean
websocketSupport: boolean
publicDomain: string
localDomain: string
nginxConfigTemplate: string
containerHttpPort: number
httpBasicAuth?: string
httpBasicAuthPath?: string
crtPath?: string
keyPath?: string
customErrorPagesDirectory: string
staticWebRoot: string
}