mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
feat: 网站创建支持相同域名不同端口 (#3165)
Refs https://github.com/1Panel-dev/1Panel/issues/2964
This commit is contained in:
parent
d2a01fb0e0
commit
d087811ae3
@ -173,9 +173,6 @@ func (w WebsiteService) CreateWebsite(create request.WebsiteCreate) (err error)
|
|||||||
primaryDomainArray := strings.Split(create.PrimaryDomain, ":")
|
primaryDomainArray := strings.Split(create.PrimaryDomain, ":")
|
||||||
primaryDomain := primaryDomainArray[0]
|
primaryDomain := primaryDomainArray[0]
|
||||||
|
|
||||||
if exist, _ := websiteRepo.GetBy(websiteRepo.WithDomain(primaryDomain)); len(exist) > 0 {
|
|
||||||
return buserr.New(constant.ErrDomainIsExist)
|
|
||||||
}
|
|
||||||
if exist, _ := websiteRepo.GetBy(websiteRepo.WithAlias(create.Alias)); len(exist) > 0 {
|
if exist, _ := websiteRepo.GetBy(websiteRepo.WithAlias(create.Alias)); len(exist) > 0 {
|
||||||
return buserr.New(constant.ErrAliasIsExist)
|
return buserr.New(constant.ErrAliasIsExist)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user