Wildcards #2

Merged
PapaTutuWawa merged 17 commits from feat/wildcards into master 2024-01-11 20:04:50 +00:00
Showing only changes of commit 6f9f92e68a - Show all commits

View File

@ -24,8 +24,12 @@ import (
) )
func handleSubdomain(domain, cname, path, giteaUrl, defaultCsp string, giteaClient *repo.GiteaClient, w http.ResponseWriter) { func handleSubdomain(domain, cname, path, giteaUrl, defaultCsp string, giteaClient *repo.GiteaClient, w http.ResponseWriter) {
hostParts := strings.Split(domain, ".") username := ""
username := hostParts[0] if cname != "" {
username = strings.Split(cname, ".")[0]
} else {
username = strings.Split(domain, ".")[0]
}
// Strip the leading / // Strip the leading /
if path[:1] == "/" { if path[:1] == "/" {