我使用APMServ 搭建本地环境,到是输入本地网址127.0.0.1的时候,会跳到不相干的导航网站,怎么回事?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我使用APMServ 搭建本地环境,到是输入本地网址127.0.0.1的时候,会跳到不相干的导航网站,怎么回事?相关的知识,希望对你有一定的参考价值。

这是默认的嘛,没问题

回车之后就跳到这儿去了
还有点击

也会跳到这个地方。
跪求解决,当然解决好了50分奉上,谢谢

参考技术A 中病毒了吧~网址被篡改了,建议用杀毒软件,好好看看自己的电脑。一般的都能查出来的。追问

不是,自己解决了,其实没有问题,搭建好之后,重启电脑再启动相关程序就不会出现,突发情况一时乱了方寸。不过还是谢谢。

Koa 本地搭建 HTTPS 环境

openssl

首先本地需要安装 openssl,用于生成自签名证书。

$ brew install openssl

检查安装:

$ openssl version
LibreSSL 2.6.5

生成证书

执行以下命令生成证书:

openssl req -nodes -new -x509 -keyout server.key -out server.cert
Generating a 2048 bit RSA private key

执行后会提示输入一些信息,地址,组织等,可以直接回车跳过。但输入时 Common Name 时,需要确保输入 localhost

$  openssl req -nodes -new -x509 -keyout server.key -out server.cert
Generating a 2048 bit RSA private key
............+++
..........+++
writing new private key to server.key
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter ., the field will be left blank.
-----
Country Name (2 letter code) []:
State or Province Name (full name) []:
Locality Name (eg, city) []:
Organization Name (eg, company) []:
Organizational Unit Name (eg, section) []:
Common Name (eg, fully qualified host name) []:localhost

执行后会得到两个文件:

  • server.cert 自签名证书文件
  • server.key 证书私钥

服务端代码

server.js

const http = require("http");
const https = require("https");
const fs = require("fs");
const Koa = require("koa");
const app = new Koa();

app.use(async ctx => 
  ctx.body = "hello https";
);

http.createServer(app.callback()).listen(3000);
const options = 
  key: fs.readFileSync("./server.key", "utf8"),
  cert: fs.readFileSync("./server.cert", "utf8")
;
https.createServer(options, app.callback()).listen(443);

然后访问 localhost

技术图片

本地访问 https 的效果

因为是本地自签名证书的原因,并没有三方机构的认证,所以浏览器会有红色的警告。

相关资源

以上是关于我使用APMServ 搭建本地环境,到是输入本地网址127.0.0.1的时候,会跳到不相干的导航网站,怎么回事?的主要内容,如果未能解决你的问题,请参考以下文章

windows下9款一键快速搭建PHP本地运行环境的好工具(含php7.0环境)

使用apmserv在本地测试网页时候出现这个如何解决?

win7上 用APMServ 5.26搭建环境 使用的是MySQL5.1 然后安装wiki4.1 最后打开页面时 无法显示排行榜?怎么

dedecms本地环境打开localhost出现l403Forbidden解决怎么

怎么搭建本地SVN服务

本地PHP环境搭建后删除不掉