如何在dev env中更改角度4的localhost名称以进行ssl测试?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在dev env中更改角度4的localhost名称以进行ssl测试?相关的知识,希望对你有一定的参考价值。
我正在尝试将我的托管env而不是localhost/
更改为类似www.example.com的内容。我试图更改我的主机文件(sudo nano /private/etc/hosts
)中的conf并执行类似下面的操作并清除我的DNS缓存dscacheutil -flushcache
但无法正常工作。我错过了什么吗?
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
127.0.0.1 www.example.com
255.255.255.255 broadcasthost
::1 localhost
10.211.55.4 window10pro
127.0.0.1 AcronisDriveSearchPlugin
注意,我使用代理配置重定向网址调用,
{
"/api": {
"target": "https://localhost:5001",
"secure": false
}
}
我的脚本开始于package.json
"scripts": {
"ng": "ng",
"start": "ng serve --ssl --proxy-config proxy.config.json",....
我打电话给npm start
为我的项目服务
答案
刚刚在www.example.com
的/private/etc/hosts
配置中的defaults
中添加了相应的主机名(angular-cli
),
"defaults": {
"styleExt": "scss",
"serve": {
"host": "www.example.com",
"sslKey": "server.key",
"sslCert": "server.crt"
},
并在ng start script
修改我的package.json
如下,
{
"name": "quickstart-angular5",
"version": "5.0.5",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --ssl --proxy-config proxy.config.json",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:free": "ngm build -p src/app/typescripts/free --clean && gulp npmFree && gulp startFree && gulp onlyFree",
"build:pro": "ngm build -p src/app/typescripts/pro --clean && gulp only-pro && gulp startPro",
"build:all": "npm run build:free && npm run build:pro",
"aot:build": "ng build --prod --sm=false --aot=true --output-path=dist",
"pre-commit": "ng lint"
},
终于打了npm start
以上是关于如何在dev env中更改角度4的localhost名称以进行ssl测试?的主要内容,如果未能解决你的问题,请参考以下文章
我如何防止剑道下拉列表在角度 4+ 中更改 valueChange 或 selectionChange 事件的值