Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
typo: fix tls port log
Browse files Browse the repository at this point in the history
  • Loading branch information
h3adex committed Dec 6, 2023
1 parent c5b7d73 commit f2b9452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (s Server) Run(ctx context.Context) {

wg.Add(1)
go func() {
log.Info("Starting HTTPS-Server on ", s.Config.Port)
log.Info("Starting HTTPS-Server on ", s.Config.TlsPort)
handle := gin.Default()
handle.Any("/*path", s.ServeHttps)
err := fp.Server(
Expand Down

0 comments on commit f2b9452

Please sign in to comment.