\r\n \u003Cbase href=\"{{ .base }}\" />\r\n \u003Clink rel=\"alternate icon\" type=\"image/png\" href=\"./favicons/favicon-light-default.png\" id=\"favicon-png\" />\r\n \u003Clink rel=\"icon\" type=\"image/svg+xml\" href=\"./favicons/favicon-light-default.svg\" id=\"favicon-svg\" />\r\n \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n \u003Cmeta name=\"theme-color\" content=\"#65a30d\" />\r\n \u003Ctitle>{{ .title }}\u003C/title>\r\n \u003Cscript type=\"\" src=\"./web-config.js\">\u003C/script>\r\n\u003C/head>\r\n\u003Cbody>\r\n \u003Cdiv id=\"app\">\u003C/div>\r\n \u003Cscript type=\"module\" src=\"/src/main.ts\">\u003C/script>\r\n\u003C/body>\r\n\u003C/html>\r\n```\r\n\r\nInject the base href in the index.html\r\n\r\nserver/web/web.go\r\n```go\r\nfunc handleIndex(c *gin.Context) {\r\n c.HTML(200, \"index.html\", gin.H{\r\n \"base\": server.Config.Server.Path + \"/\",\r\n \"title\": server.Config.Server.PageTitle,\r\n })\r\n}\r\n```\r\n\r\n`server.Config.Server.Path` could be calculated from `server.Config.Server.Host` (or maybe overwritten by CLI option)\r\n\r\ncmd/server/server.go\r\n```go\r\nserverURL, err := url.Parse(c.String(\"server-host\"))\r\nif err != nil {\r\n panic(err)\r\n}\r\nserver.Config.Server.Path = serverURL.Path\r\n```\r\n\r\nRedirects are prefixed with new path:\r\n\r\nserver/api/login.go\r\n```go\r\nc.Redirect(303, server.Config.Server.Path+\"/login?error=oauth_error\")\r\n```\r\n\r\n\n\n### Alternative\n\n_No response_\n\n### Additional context\n\n#### Absolute UI paths:\r\n\r\n\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/web/index.html#L5\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/web/index.html#L6\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/web/index.html#L10\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/web/src/compositions/useAuthentication.ts#L15\r\n\r\nand more ...\r\n\r\n#### Absolute redirect paths:\r\n\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/server/api/login.go#L55\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/server/api/login.go#L71\r\nhttps://github.com/woodpecker-ci/woodpecker/blob/1786c0554a3f347924a0a1d36c8b2684eb45ac86/server/api/login.go#L81\r\n\r\nand more ...\r\n\r\n#### Ingress configuration for woodpecker\r\n\r\n```yaml\r\napiVersion: networking.k8s.io/v1\r\nkind: Ingress\r\nmetadata:\r\n name: \"woodpecker\"\r\n annotations:\r\n external-dns.alpha.kubernetes.io/hostname: \"local.cluster\"\r\n cert-manager.io/cluster-issuer: \"cluster-selfsigned\"\r\n kubernetes.io/ingress.class: \"nginx\"\r\n nginx.ingress.kubernetes.io/proxy-buffer-size: \"64k\"\r\n nginx.ingress.kubernetes.io/rewrite-target: \"/$2\"\r\nspec:\r\n tls:\r\n - hosts:\r\n - local.cluster\r\n secretName: \"cluster-tls\"\r\n rules:\r\n - host: \"local.cluster\"\r\n http:\r\n paths:\r\n - path: \"/woodpecker(/|$)(.*)\"\r\n pathType: ImplementationSpecific\r\n backend:\r\n service:\r\n name: \"woodpecker\"\r\n port:\r\n number: 8000\r\n```\n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't already an [issue](https://github.com/woodpecker-ci/woodpecker/issues) that request the same feature to avoid creating a duplicate.",[2046],{"name":2047,"color":2048},"feature","180DBE",1429,"Improve ingress/reverse proxy support","2023-04-29T15:51:52Z","https://github.com/woodpecker-ci/woodpecker/issues/1429",0.7672956,{"description":2055,"labels":2056,"number":2063,"owner":1991,"repository":1992,"state":2020,"title":2064,"updated_at":2065,"url":2066,"score":2067},"https://github.com/gin-gonic/gin/issues/3555\r\n\r\n----\r\nwe dont use the function `FileAttachment` and so we are not affected\r\n\r\n----",[2057,2060],{"name":2058,"color":2059},"governance","A46EFE",{"name":2061,"color":2062},"dependencies","006b75",1756,"security issue of gin (dependencie)","2023-06-01T06:25:18Z","https://github.com/woodpecker-ci/woodpecker/issues/1756",0.7690222,{"description":2069,"labels":2070,"number":2073,"owner":1991,"repository":1992,"state":2020,"title":2074,"updated_at":2075,"url":2076,"score":2077},"### Clear and concise description of the problem\n\nAs a user I may want to select a language in Woodpecker which isn't the language my Browser is set to.\n\n### Suggested solution\n\nAdd some language selection in the user details screen `/user` (clicking on the user icon).\n\n### Alternative\n\n_No response_\n\n### Additional context\n\nfollow up of #258 \n\n### Validations\n\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\n- [X] Check that there isn't already an [issue](https://github.com/woodpecker-ci/woodpecker/issues) that request the same feature to avoid creating a duplicate.",[2071,2072],{"name":2032,"color":2033},{"name":2047,"color":2048},1109,"Allow user to set language","2022-10-27T00:42:41Z","https://github.com/woodpecker-ci/woodpecker/issues/1109",0.77397525,{"description":2079,"labels":2080,"number":2082,"owner":1991,"repository":1992,"state":2020,"title":2083,"updated_at":2084,"url":2085,"score":2086},"version: latest\r\n\r\nWhen sending a sigterm to the runner with `sudo docker kill woodpecker --signal=SIGTERM`, the runner gracefully shutsdown, but the server panics\r\n\r\n```\r\npanic: Write called after Handler finished\r\n\r\ngoroutine 29210 [running]:\r\nnet/http.(*http2responseWriter).write(0xc000012828, 0x18, 0x0, 0x0, 0x0, 0x11009c2, 0x18, 0x1045f60, 0x7f359512c401, 0x7f359512c460)\r\n /usr/local/go/src/net/http/h2_bundle.go:6256 +0x1f7\r\nnet/http.(*http2responseWriter).WriteString(0xc000012828, 0x11009c2, 0x18, 0x7f359512c460, 0xc000012828, 0x7f359512c401)\r\n /usr/local/go/src/net/http/h2_bundle.go:6249 +0x55\r\nio.WriteString(0x7f359512c440, 0xc000012828, 0x11009c2, 0x18, 0xc000012828, 0x7f3595967101, 0x7f359512c420)\r\n /usr/local/go/src/io/io.go:309 +0x74\r\ngithub.com/gin-gonic/gin.(*responseWriter).WriteString(0xc0002f9500, 0x11009c2, 0x18, 0x7f359512c420, 0xc0002f9500, 0xc001807e01)\r\n /drone/src/github.com/woodpecker-ci/woodpecker/vendor/github.com/gin-gonic/gin/response_writer.go:85 +0x7a\r\nio.WriteString(0x7f3595967170, 0xc0002f9500, 0x11009c2, 0x18, 0xc0002f9500, 0xc0000797c0, 0x0)\r\n /usr/local/go/src/io/io.go:309 +0x74\r\ngithub.com/woodpecker-ci/woodpecker/server/api.LogStreamSSE.func2(0x12dfdd0, 0xc0003b8180, 0xc0015dbad0, 0xc000edee40, 0x12e9e58, 0xc0002f9500, 0xc0016111b0)\r\n /drone/src/github.com/woodpecker-ci/woodpecker/server/api/stream.go:207 +0x168\r\ncreated by github.com/woodpecker-ci/woodpecker/server/api.LogStreamSSE\r\n /drone/src/github.com/woodpecker-ci/woodpecker/server/api/stream.go:191 +0x699\r\n```",[2081],{"name":1985,"color":1986},471,"Server panic after signal SIGTERM","2021-11-26T04:08:10Z","https://github.com/woodpecker-ci/woodpecker/issues/471",0.7843399,{"description":2088,"labels":2089,"number":2091,"owner":1991,"repository":1992,"state":2020,"title":2092,"updated_at":2093,"url":2094,"score":2095},"you used lib does not provide this by default: https://github.com/yaml/yaml/issues/35\r\n\r\nso we need to look into writing an extention for it if posible or add a post-proccessor",[2090],{"name":2047,"color":2048},1192,"Support YAML override and extension","2023-04-29T12:49:43Z","https://github.com/woodpecker-ci/woodpecker/issues/1192",0.7849814,{"description":2097,"labels":2098,"number":2103,"owner":1991,"repository":1992,"state":2020,"title":2104,"updated_at":2105,"url":2106,"score":2107},"### Component\r\n\r\nagent\r\n\r\n### Describe the bug\r\n\r\nRecently a lot of builds are failing with this error message:`Execution error Get \"http://%2Fvar%2Frun%2Fdocker.sock/v1.42/containers/wp_01h297rn608hcqja117arzyqmm_0_step_6/json\": context deadline exceeded`\r\n\r\nSome examples:\r\n- https://woodpecker.join-lemmy.org/LemmyNet/lemmy/pipeline/13/10\r\n- https://woodpecker.join-lemmy.org/LemmyNet/lemmy/pipeline/19/8\r\n- https://woodpecker.join-lemmy.org/LemmyNet/lemmy/pipeline/18/8\r\n\r\nAs far as I can see it only affects this one repo, others are working fine. Maybe there is a problem with the `.woodpecker.yml` or with a specific docker image used. It seems that the problem started happening after we upgraded to `woodpecker:next-540ad108`.\r\n\r\n### System Info\r\n\r\n```shell\r\n{\"source\":\"https://github.com/woodpecker-ci/woodpecker\",\"version\":\"next-540ad108\"}\r\n```\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Read the [Contributing Guidelines](https://github.com/woodpecker-ci/woodpecker/blob/master/CONTRIBUTING.md).\r\n- [X] Read the [docs](https://woodpecker-ci.org/docs/intro).\r\n- [X] Check that there isn't [already an issue](https://github.com/woodpecker-ci/woodpecker/issues) that reports the same bug to avoid creating a duplicate.\r\n- [X] Checked that the bug isn't fixed in the `next` version already [https://woodpecker-ci.org/faq#which-version-of-woodpecker-should-i-use]\r\n- [X] Check that this is a concrete bug. For Q&A join our [Discord Chat Server](https://discord.gg/fcMQqSMXJy) or the [Matrix room](https://matrix.to/#/#woodpecker:matrix.org).",[2099,2100],{"name":1985,"color":1986},{"name":2101,"color":2102},"agent","ECBCDF",1836,"Builds fail with execution error \"context deadline exceeded\"","2023-06-09T11:18:34Z","https://github.com/woodpecker-ci/woodpecker/issues/1836",0.78716016,["Reactive",2109],{},["Set"],["ShallowReactive",2112],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"-vbxGKN5BXGwdiSKmiGxyelFK0xq-wVzhbRtjuUDzBE":-1},"/woodpecker-ci/woodpecker/1512"]