[02:12:30] <andrewbogott>	 !log tools truncating large logfiles on tools nfs
[02:12:34] <stashbot>	 Logged the message at https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools/SAL
[20:58:23] <wm-bb>	 <Eren> Hello,
[20:58:24] <wm-bb>	 <Eren> 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] <wm-bb>	 <Eren> 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] <wm-bb>	 <lucaswerkmeister> 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] <wm-bb>	 <lucaswerkmeister> see https://wikitech.wikimedia.org/wiki/Help:Toolforge/Web#Other_/_generic_web_servers
[21:36:41] <wm-bb>	 <Eren> Thank you. But I modified the port 8000 to 8080. But it didn't made any changes. 
[21:36:41] <wm-bb>	 <Eren> installed the go version
[21:36:42] <wm-bb>	 <Eren> cloned the repo,
[21:36:44] <wm-bb>	 <Eren> installed the go dependencies.
[21:36:45] <wm-bb>	 <Eren> go build -o ./bin/scribe-server *.go 
[21:36:47] <wm-bb>	 <Eren> go run . (this runs only toolforge env)
[21:36:48] <wm-bb>	 <Eren> webservice start....
[21:36:50] <wm-bb>	 <Eren> won't get the api publicly on https://test-scribe-server.toolforge.org/
[21:36:51] <wm-bb>	 <Eren> I'm trying this code basically :- https://github.com/axif0/test-scribe-server/
[21:36:53] <wm-bb>	 <Eren> I didn't know which part i'm missing. Sorry i'm new to toolforge actually. 😅