使用代理
Ionic CLI 内置了代理支持。可以通过配置文件或环境变量配置代理设置。
要通过配置文件配置代理设置,请使用代理服务器的 URL 运行以下命令
ionic config set -g proxy http://proxy.example.com:8888
要通过环境变量配置代理设置,请使用以下之一
$ export HTTP_PROXY="http://proxy.example.com:8888" # also used by npm
$ export HTTPS_PROXY="https://proxy.example.com:8888" # also used by npm
$ export IONIC_HTTP_PROXY="http://proxy.example.com:8888"
其他 CLI
您使用的每个 CLI 都必须单独配置以代理网络请求。
npm
npm config set proxy http://proxy.company.com:8888
git
git config --global http.proxy http://proxy.example.com:8888
SSL 配置
Ionic CLI 可以配置为使用各种 SSL 设置进行 HTTP 请求。
$ ionic config set -g ssl.cafile /path/to/cafile # file path to your CA root certificate
$ ionic config set -g ssl.certfile /path/to/certfile # file path to a client certificate
$ ionic config set -g ssl.keyfile /path/to/keyfile # file path to a client key file
cafile
、certfile
和 keyfile
条目可以在 ~/.ionic/config.json
中手动编辑为字符串数组,以包含多个文件。