2024-10-27 06:10:27 +01:00
|
|
|
package pkg
|
|
|
|
|
|
2024-10-30 16:38:09 +01:00
|
|
|
const ConfigFile = "/config/goma.yml" // Default configuration file
|
|
|
|
|
const accessControlAllowOrigin = "Access-Control-Allow-Origin" // Cors
|
2024-10-29 14:21:55 +01:00
|
|
|
const serverName = "Goma"
|
2024-11-02 11:55:37 +01:00
|
|
|
const gatewayName = "Goma Gateway"
|
2024-10-30 16:38:09 +01:00
|
|
|
const AccessMiddleware = "access" // access middleware
|
|
|
|
|
const BasicAuth = "basic" // basic authentication middleware
|
|
|
|
|
const JWTAuth = "jwt" // JWT authentication middleware
|
2024-11-07 09:45:09 +01:00
|
|
|
const OAuth = "oauth" // OAuth authentication middleware
|