http server using relativePath

This commit is contained in:
arnaucube
2022-05-13 20:18:28 +02:00
parent add29da9e4
commit 0eda07e9a2
4 changed files with 5 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -12,7 +12,7 @@ import (
"github.com/gomarkdown/markdown/parser"
)
const version = "v0_20220503"
const version = "v0_20220513"
const directory = "blogo-input"
const defaultOutputDir = "public"
@@ -37,9 +37,10 @@ func main() {
// serve files
fs := http.FileServer(http.Dir(config.OutputDir))
fmt.Printf("Blog being served in: \n http://127.0.0.1:%s\n http://localhost:%s\n",
*port, *port)
log.Fatal(http.ListenAndServe(":"+*port, fs))
http.Handle(config.RelativePath+"/", http.StripPrefix(config.RelativePath, fs))
fmt.Printf("Blog being served in: \n http://127.0.0.1:%s%s\n http://localhost:%s%s\n",
*port, config.RelativePath, *port, config.RelativePath)
log.Fatal(http.ListenAndServe(":"+*port, nil))
}
func generateHTML() {