mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-01-15 11:34:10 +08:00
* feat: Add support for Mux SSL mode and update related settings - Introduced a new SSL mode "Mux" in the settings, allowing for HTTP to HTTPS redirection. - Updated the `SSL` field in the `SettingUpdate` struct to include "Mux" as a valid option. - Modified the server logic to handle Mux connections, including certificate management and HTTP redirection. - Updated frontend components to reflect the new SSL options and improved user guidance in multiple languages. * fix: Update HTTPS related messages for improved clarity and security guidance in multiple languages
30 lines
744 B
Go
30 lines
744 B
Go
package constant
|
|
|
|
const (
|
|
StatusSuccess = "Success"
|
|
StatusFailed = "Failed"
|
|
|
|
// node
|
|
StatusWaiting = "Waiting"
|
|
StatusHealthy = "Healthy"
|
|
StatusStarting = "Starting"
|
|
StatusUnhealthy = "Unhealthy"
|
|
StatusWaitForUpgrade = "WaitForUpgrade"
|
|
StatusUpgrading = "Upgrading"
|
|
StatusRunning = "Running"
|
|
StatusFree = "Free"
|
|
StatusBound = "Bound"
|
|
StatusExceptional = "Exceptional"
|
|
StatusRetrying = "Retrying"
|
|
StatusLost = "Lost"
|
|
StatusExecuting = "Executing"
|
|
|
|
StatusEnable = "Enable"
|
|
StatusDisable = "Disable"
|
|
StatusMux = "Mux"
|
|
|
|
StatusInstalling = "Installing"
|
|
StatusNormal = "Normal"
|
|
StatusDeleted = "Deleted"
|
|
StatusLoading = "Loading"
|
|
)
|