Set Set Sets the response’s HTTP header field to the specified key , value . c . Set ( field , value string ) app . Get ( "/" , func ( c * fiber . Ctx ) { c . ...
IPs IPs Returns an array of IP addresses specified in the X-Forwarded-For request header. func ( c * Ctx ) IPs () [] string // X-Forwarded-For: proxy1, 127.0.0.1,...
App App Returns the *App reference so you could easily access all application settings. c . App () * App app . Get ( "/bodylimit" , func ( c * fiber . Ctx ) { ...
App App Returns the *App reference so you could easily access all application settings. func ( c * Ctx ) App () * App app . Get ( "/stack" , func ( c * fiber ....
BaseURL BaseURL Returns the base URL (protocol + host ) as a string . func ( c * Ctx ) BaseURL () string // GET https://example.com/page#chapter-1 app . Get (...