V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  jsjcjsjc  ›  全部回复第 22 页 / 共 23 页
回复总数  441
1 ... 14  15  16  17  18  19  20  21  22  23  
2016-10-26 19:06:25 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@lslqtz 我没有设置啊...
2016-10-26 11:56:43 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@lslqtz 啥叫代理密码?
2016-10-25 22:46:05 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@wangxiaodong 一个比一个牛~~~
2016-10-25 20:37:50 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@lightening 这么牛~~~我去试试看
2016-10-25 19:04:35 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@fangdingjun @lightening @lslqtz @yidinghe
估计知道原因了~~~
我的域名虽然指向了 ip ,但是在 nginx 的配置文件里面没有为所有的域名设置 root/www 的路径,所以用 webroot 的话不能验证。。。

因为我只想做一下 https 的 301 转发。。。。。想这样的,不需要指定 root 的路径。。
由于域名比较多想把证书都放在一起,以后新加的证书也放在一一个文件下。。。大家有办法吗?

server
{
listen 80;
server_name airtranst.com www.airtranst.com *.airtranst.com;
location / {
rewrite ^/(.*)$ https://airtranst.com$1 permanent;
}
}

server {
server_name airtranst.com;
listen 443;

ssl on;
ssl_certificate /etc/letsencrypt/live/airtranat.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/airtranat.com/privkey.pem;

return 301 http://artransat.com$request_uri;
}
2016-10-25 16:53:56 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@lslqtz 墙是通过路由器的关键词检测的吧?你只是访问的时候需要密码,信息传输经过墙的时候还是明文吧?比如谷歌搜索关键词
2016-10-25 15:06:47 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@w99wen 我关键是怕墙的检测~~
2016-10-25 13:15:15 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@w99wen
vi /etc/nginx/sites-enabled/cl.getpocket.net.conf
server {
server_name cl.getpocket.net;
listen 80;

location / {
proxy_pass http://t66y.com/; #需要反代的域名
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
2016-10-25 12:31:18 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
我就是想把多个域名的证书放在一起文件下,后面新增的也在更新到同一个文件里~
2016-10-25 12:25:39 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
大家不要转移注意力
2016-10-25 09:06:57 +08:00
回复了 jsjcjsjc 创建的主题 NGINX Let's Encrypt 使用 webroot 方式签发证书一直失败?
@jkmmmm webroot 是不需要停用端口的,而且我停用了也没用~~
只有 standalone 是可以的
2016-10-24 21:55:56 +08:00
回复了 jsjcjsjc 创建的主题 服务器 cloudxns.net 不能批量删除域名?
算了直接用 aliyun 了,更加好用,批处理非常方便
2016-07-21 15:05:57 +08:00
回复了 jsjcjsjc 创建的主题 Google 如何通过 google 跳转到指定网址?
@BlackGlory 但是后面那个 AFQjCNHejwhPeR5sVWA-xGcAwx71OwG6tw 根据不同域名都是变化的啊~~
2016-07-21 15:01:14 +08:00
回复了 jsjcjsjc 创建的主题 Google 如何通过 google 跳转到指定网址?
@yeshang 本人行为端正,只有 google 的广告
2016-06-26 18:28:53 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@mhtt 您好,可以看一下我 16 楼的回复,据说 HTTPS 可以隐藏 referer
2016-06-25 20:52:29 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@lslqtz2 我看了 wiki ,上面说 https 的跳转也不会有 referer
“ If a website is accessed from a HTTP Secure (HTTPS) connection and a link points to anywhere except another secure location, then the referrer field is not sent.[10]”
https://en.wikipedia.org/wiki/HTTP_referer#Referrer_hiding
2016-06-25 17:34:24 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@TaMud 这个可以去 referer ?
2016-06-25 17:23:57 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@lslqtz 你的意思是只有 return 301 或者 js 的跳转才不会留下 refer 吗?可以根据 2 楼我的回复给我一个例子吗。。没明白啊~~~非常感谢 ;-)
2016-06-25 17:21:54 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@HLT 我有个域名有很多自然流量,但是已经被 google 列入黑名单了,所以需要跳转但又不能让 google 知道 refer~~
2016-06-25 17:20:34 +08:00
回复了 jsjcjsjc 创建的主题 NGINX nginx 怎么配置 https 跳转到另外一个网址
@raphaelsoul 你这个是和我 2 楼写的是一个意思吗?没看出来不一样啊 ;-)
1 ... 14  15  16  17  18  19  20  21  22  23  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1781 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 25ms · UTC 04:08 · PVG 12:08 · LAX 20:08 · JFK 23:08
Developed with CodeLauncher
♥ Do have faith in what you're doing.