[02:12:30] !log tools truncating large logfiles on tools nfs [02:12:34] Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools/SAL [20:58:23] Hello, [20:58:24] I'm using MariaDB via Toolforge's API to access Scribe-related information. While I can run my Go application successfully within the Toolforge environment using go run ., I'm unable to access the service globally from outside — it's only available locally (e.g., at 0.0.0.0:8080). [20:58:44] However, I'm having trouble making the service accessible externally. I would greatly appreciate any guidance on how I can expose my Go application so that it's accessible outside the Toolforge environment. [21:01:30] I think you need to listen on right port (ideally from the `$PORT` environment variable, but if parsing that is difficult, for now you could also hard-code 8000) [21:01:45] see https://wikitech.wikimedia.org/wiki/Help:Toolforge/Web#Other_/_generic_web_servers [21:36:41] Thank you. But I modified the port 8000 to 8080. But it didn't made any changes. [21:36:41] installed the go version [21:36:42] cloned the repo, [21:36:44] installed the go dependencies. [21:36:45] go build -o ./bin/scribe-server *.go [21:36:47] go run . (this runs only toolforge env) [21:36:48] webservice start.... [21:36:50] won't get the api publicly on https://test-scribe-server.toolforge.org/ [21:36:51] I'm trying this code basically :- https://github.com/axif0/test-scribe-server/ [21:36:53] I didn't know which part i'm missing. Sorry i'm new to toolforge actually. 😅