Site updated: 2022-10-14 17:41:26
This commit is contained in:
parent
e67fb87fe6
commit
4433910317
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
14
2022/10/14/允许跨域获取cookies方法/index.html
Normal file
14
2022/10/14/允许跨域获取cookies方法/index.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
29
atom.xml
29
atom.xml
@ -8,7 +8,7 @@
|
|||||||
<author>
|
<author>
|
||||||
<name>Hito li</name>
|
<name>Hito li</name>
|
||||||
</author>
|
</author>
|
||||||
<updated>2022-10-12T06:40:00.000Z</updated>
|
<updated>2022-10-14T09:13:00.000Z</updated>
|
||||||
<category term="hito" />
|
<category term="hito" />
|
||||||
<category term="無言" />
|
<category term="無言" />
|
||||||
<category term="博客" />
|
<category term="博客" />
|
||||||
@ -16,6 +16,33 @@
|
|||||||
<category term="笔记" />
|
<category term="笔记" />
|
||||||
<category term="心得体会" />
|
<category term="心得体会" />
|
||||||
<category term="踩坑" />
|
<category term="踩坑" />
|
||||||
|
<entry>
|
||||||
|
<id>https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/</id>
|
||||||
|
<title>允许跨域获取cookie的方法</title>
|
||||||
|
<link rel="alternate" href="https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/"/>
|
||||||
|
<content type="html"><h4 id="使用场景"><a class="anchor" href="#使用场景">#</a> 使用场景</h4>
|
||||||
|
<p> 在 A 域名的页面向 B 域名提交数据时需要代入 B 域名的 cookie,否则 B 域名会跳转到登陆页面。解决方式需要使用到 nginx 反向代理,配置如下:</p>
|
||||||
|
<pre><code class="language-conf">server &#123;
|
||||||
|
listen port ssl http2;
|
||||||
|
server_name xxx.com;
|
||||||
|
ssl_certificate_key /xxx.key;
|
||||||
|
ssl_certificate /xxx.pem;
|
||||||
|
proxy_cookie_path ~(.*) &quot;$1; SameSite=None; secure; httponly&quot;;
|
||||||
|
|
||||||
|
location / &#123;
|
||||||
|
#允许镶套的方式(可以同域镶套、指定域名镶套或者所有域名镶套)
|
||||||
|
add_header X-Frame-Options ALLOWALL; #允许被所有域名镶套
|
||||||
|
proxy_pass http://xxx;
|
||||||
|
&#125;
|
||||||
|
&#125;
|
||||||
|
</code></pre>
|
||||||
|
</content>
|
||||||
|
<category term="技术分享" scheme="https://blog.jingxiyuan.cn/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/" />
|
||||||
|
<category term="nginx" scheme="https://blog.jingxiyuan.cn/tags/nginx/" />
|
||||||
|
<category term="iframe" scheme="https://blog.jingxiyuan.cn/tags/iframe/" />
|
||||||
|
<category term="cookie" scheme="https://blog.jingxiyuan.cn/tags/cookie/" />
|
||||||
|
<updated>2022-10-14T09:13:00.000Z</updated>
|
||||||
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<id>https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/</id>
|
<id>https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/</id>
|
||||||
<title>使用PicGo上传图片到chevereto</title>
|
<title>使用PicGo上传图片到chevereto</title>
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
13
feed.json
13
feed.json
@ -6,6 +6,19 @@
|
|||||||
"description": "hito的博客",
|
"description": "hito的博客",
|
||||||
"home_page_url": "https://blog.jingxiyuan.cn",
|
"home_page_url": "https://blog.jingxiyuan.cn",
|
||||||
"items": [
|
"items": [
|
||||||
|
{
|
||||||
|
"id": "https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/",
|
||||||
|
"url": "https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/",
|
||||||
|
"title": "允许跨域获取cookie的方法",
|
||||||
|
"date_published": "2022-10-14T09:13:00.000Z",
|
||||||
|
"content_html": "<h4 id=\"使用场景\"><a class=\"anchor\" href=\"#使用场景\">#</a> 使用场景</h4>\n<p> 在 A 域名的页面向 B 域名提交数据时需要代入 B 域名的 cookie,否则 B 域名会跳转到登陆页面。解决方式需要使用到 nginx 反向代理,配置如下:</p>\n<pre><code class=\"language-conf\">server {\n\tlisten port ssl http2;\n\tserver_name xxx.com;\n\tssl_certificate_key /xxx.key;\n\tssl_certificate /xxx.pem;\n\tproxy_cookie_path ~(.*) "$1; SameSite=None; secure; httponly";\n\n\tlocation / {\n\t\t#允许镶套的方式(可以同域镶套、指定域名镶套或者所有域名镶套)\n\t\tadd_header X-Frame-Options ALLOWALL; #允许被所有域名镶套\n\t\tproxy_pass http://xxx;\n\t}\n}\n</code></pre>\n",
|
||||||
|
"tags": [
|
||||||
|
"技术分享",
|
||||||
|
"nginx",
|
||||||
|
"iframe",
|
||||||
|
"cookie"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/",
|
"id": "https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/",
|
||||||
"url": "https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/",
|
"url": "https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/",
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
31
rss.xml
31
rss.xml
@ -10,8 +10,8 @@
|
|||||||
</author>
|
</author>
|
||||||
<description>hito的博客</description>
|
<description>hito的博客</description>
|
||||||
<language>zh-CN</language>
|
<language>zh-CN</language>
|
||||||
<pubDate>Wed, 12 Oct 2022 14:40:00 +0800</pubDate>
|
<pubDate>Fri, 14 Oct 2022 17:13:00 +0800</pubDate>
|
||||||
<lastBuildDate>Wed, 12 Oct 2022 14:40:00 +0800</lastBuildDate>
|
<lastBuildDate>Fri, 14 Oct 2022 17:13:00 +0800</lastBuildDate>
|
||||||
<category term="hito" />
|
<category term="hito" />
|
||||||
<category term="無言" />
|
<category term="無言" />
|
||||||
<category term="博客" />
|
<category term="博客" />
|
||||||
@ -19,6 +19,33 @@
|
|||||||
<category term="笔记" />
|
<category term="笔记" />
|
||||||
<category term="心得体会" />
|
<category term="心得体会" />
|
||||||
<category term="踩坑" />
|
<category term="踩坑" />
|
||||||
|
<item>
|
||||||
|
<guid isPermalink="true">https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/</guid>
|
||||||
|
<title>允许跨域获取cookie的方法</title>
|
||||||
|
<link>https://blog.jingxiyuan.cn/2022/10/14/%E5%85%81%E8%AE%B8%E8%B7%A8%E5%9F%9F%E8%8E%B7%E5%8F%96cookies%E6%96%B9%E6%B3%95/</link>
|
||||||
|
<category term="技术分享" scheme="https://blog.jingxiyuan.cn/categories/%E6%8A%80%E6%9C%AF%E5%88%86%E4%BA%AB/" />
|
||||||
|
<category term="nginx" scheme="https://blog.jingxiyuan.cn/tags/nginx/" />
|
||||||
|
<category term="iframe" scheme="https://blog.jingxiyuan.cn/tags/iframe/" />
|
||||||
|
<category term="cookie" scheme="https://blog.jingxiyuan.cn/tags/cookie/" />
|
||||||
|
<pubDate>Fri, 14 Oct 2022 17:13:00 +0800</pubDate>
|
||||||
|
<description><![CDATA[ <h4 id="使用场景"><a class="anchor" href="#使用场景">#</a> 使用场景</h4>
|
||||||
|
<p> 在 A 域名的页面向 B 域名提交数据时需要代入 B 域名的 cookie,否则 B 域名会跳转到登陆页面。解决方式需要使用到 nginx 反向代理,配置如下:</p>
|
||||||
|
<pre><code class="language-conf">server &#123;
|
||||||
|
listen port ssl http2;
|
||||||
|
server_name xxx.com;
|
||||||
|
ssl_certificate_key /xxx.key;
|
||||||
|
ssl_certificate /xxx.pem;
|
||||||
|
proxy_cookie_path ~(.*) &quot;$1; SameSite=None; secure; httponly&quot;;
|
||||||
|
|
||||||
|
location / &#123;
|
||||||
|
#允许镶套的方式(可以同域镶套、指定域名镶套或者所有域名镶套)
|
||||||
|
add_header X-Frame-Options ALLOWALL; #允许被所有域名镶套
|
||||||
|
proxy_pass http://xxx;
|
||||||
|
&#125;
|
||||||
|
&#125;
|
||||||
|
</code></pre>
|
||||||
|
]]></description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<guid isPermalink="true">https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/</guid>
|
<guid isPermalink="true">https://blog.jingxiyuan.cn/2022/10/12/%E4%BD%BF%E7%94%A8picgo%E4%B8%8A%E4%BC%A0%E5%9B%BE%E7%89%87%E5%88%B0chevereto/</guid>
|
||||||
<title>使用PicGo上传图片到chevereto</title>
|
<title>使用PicGo上传图片到chevereto</title>
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
tags/cookie/index.html
Normal file
1
tags/cookie/index.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user