mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.3 KiB
82 lines
2.3 KiB
// Copyright 2018 fatedier, fatedier@gmail.com |
|
// |
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
// you may not use this file except in compliance with the License. |
|
// You may obtain a copy of the License at |
|
// |
|
// http://www.apache.org/licenses/LICENSE-2.0 |
|
// |
|
// Unless required by applicable law or agreed to in writing, software |
|
// distributed under the License is distributed on an "AS IS" BASIS, |
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
// See the License for the specific language governing permissions and |
|
// limitations under the License. |
|
|
|
package sub |
|
|
|
import ( |
|
"fmt" |
|
"os" |
|
"strings" |
|
|
|
"github.com/spf13/cobra" |
|
|
|
"github.com/fatedier/frp/pkg/config" |
|
"github.com/fatedier/frp/pkg/consts" |
|
) |
|
|
|
func init() { |
|
RegisterCommonFlags(httpsCmd) |
|
|
|
httpsCmd.PersistentFlags().StringVarP(&proxyName, "proxy_name", "n", "", "proxy name") |
|
httpsCmd.PersistentFlags().StringVarP(&localIP, "local_ip", "i", "127.0.0.1", "local ip") |
|
httpsCmd.PersistentFlags().IntVarP(&localPort, "local_port", "l", 0, "local port") |
|
httpsCmd.PersistentFlags().StringVarP(&customDomains, "custom_domain", "d", "", "custom domain") |
|
httpsCmd.PersistentFlags().StringVarP(&subDomain, "sd", "", "", "sub domain") |
|
httpsCmd.PersistentFlags().BoolVarP(&useEncryption, "ue", "", false, "use encryption") |
|
httpsCmd.PersistentFlags().BoolVarP(&useCompression, "uc", "", false, "use compression") |
|
|
|
rootCmd.AddCommand(httpsCmd) |
|
} |
|
|
|
var httpsCmd = &cobra.Command{ |
|
Use: "https", |
|
Short: "Run frpc with a single https proxy", |
|
RunE: func(cmd *cobra.Command, args []string) error { |
|
clientCfg, err := parseClientCommonCfgFromCmd() |
|
if err != nil { |
|
fmt.Println(err) |
|
os.Exit(1) |
|
} |
|
|
|
cfg := &config.HTTPSProxyConf{} |
|
var prefix string |
|
if user != "" { |
|
prefix = user + "." |
|
} |
|
cfg.ProxyName = prefix + proxyName |
|
cfg.ProxyType = consts.HTTPSProxy |
|
cfg.LocalIP = localIP |
|
cfg.LocalPort = localPort |
|
cfg.CustomDomains = strings.Split(customDomains, ",") |
|
cfg.SubDomain = subDomain |
|
cfg.UseEncryption = useEncryption |
|
cfg.UseCompression = useCompression |
|
|
|
err = cfg.CheckForCli() |
|
if err != nil { |
|
fmt.Println(err) |
|
os.Exit(1) |
|
} |
|
|
|
proxyConfs := map[string]config.ProxyConf{ |
|
cfg.ProxyName: cfg, |
|
} |
|
err = startService(clientCfg, proxyConfs, nil, "") |
|
if err != nil { |
|
fmt.Println(err) |
|
os.Exit(1) |
|
} |
|
return nil |
|
}, |
|
}
|
|
|