summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-06-29 21:31:25 -0500
committerJeff Carr <[email protected]>2025-06-29 21:31:25 -0500
commitf4cf57ba74b85483dff42bcf78ef701687b0588a (patch)
tree4d93a88e7585a3b2c88cdeb61df0d669f4f25d5f /main.go
parent4bc92ccddd52c0a7454247cb226ce085e62394e8 (diff)
minor fixes
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index bda0f1c..57798db 100644
--- a/main.go
+++ b/main.go
@@ -37,7 +37,8 @@ func main() {
// go https() // use caddy instead
p := fmt.Sprintf(":%d", argv.Port)
log.Println("HOSTNAME set to:", HOSTNAME)
- log.Println("Running on port", p)
+ log.Println("Running on port", "http://localhost"+p)
+ log.Println("Running on port", "http://localhost"+p+"/ipv6.png")
err := http.ListenAndServe(p, nil)
if err != nil {
log.Println("Error starting server:", err)