| 12345678910111213141516171819 | //go:build windowspackage nginximport "strings"// fix #1046// nginx.conf include sites-enabled/*.conf// sites-enabled/example.com.conf -> example.com.conf.conf// GetConfSymlinkPath returns the path of the symlink filefunc GetConfSymlinkPath(path string) string {	return path + ".conf"}// GetConfNameBySymlinkName returns the name of the symlink filefunc GetConfNameBySymlinkName(name string) string {	return strings.TrimSuffix(name, ".conf")}
 |