mirror of
https://github.com/caprover/caprover
synced 2026-05-06 03:30:29 +00:00
3dbc3f8f89
- add a new config "websocketSupport" to the app definition - use this config to add "upgrade headers" to nginx config
17 lines
382 B
TypeScript
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
|
|
}
|