<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="https://v1sta.xyz/wp-content/plugins/pretty-rss-feeds/xslt/pretty-feed.xsl" type="text/xsl" media="screen" ?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/">

<channel>
	<title>2026年7月6日 &#8211; 景の域</title>
	<atom:link href="https://v1sta.xyz/2026/07/06/feed/" rel="self" type="application/rss+xml" />
	<link>https://v1sta.xyz</link>
	<description>远景的幻想空间</description>
	<lastBuildDate>Mon, 06 Jul 2026 08:59:53 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>

<image>
	<url>https://v1sta.xyz/wp-content/uploads/2026/03/V1sta-Orb-Output512-2-60x60.png</url>
	<title>2026年7月6日 &#8211; 景の域</title>
	<link>https://v1sta.xyz</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>解决Bookstack审计IP显示来自Cloudflare CDN的问题</title>
		<link>https://v1sta.xyz/tech/bookstack-cloudflare-x-forwarded-real_ip/</link>
					<comments>https://v1sta.xyz/tech/bookstack-cloudflare-x-forwarded-real_ip/#respond</comments>
		
		<dc:creator><![CDATA[域主 V1STA]]></dc:creator>
		<pubDate>Mon, 06 Jul 2026 08:58:47 +0000</pubDate>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[Bookstack]]></category>
		<guid isPermaLink="false">https://v1sta.xyz/?p=6465</guid>

					<description><![CDATA[关于Cloudflare的CDN IP穿透的问题屡见不鲜。以前景の域还在FRP穿透的时期就有遇到类似的问题。博 &#8230; <a href="https://v1sta.xyz/tech/bookstack-cloudflare-x-forwarded-real_ip/" class="more-link">继续阅读<span class="screen-reader-text">解决Bookstack审计IP显示来自Cloudflare CDN的问题</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">关于Cloudflare的CDN IP穿透的问题屡见不鲜。<br>以前景の域还在FRP穿透的时期就有遇到类似的问题。<br>博客是个好东西，总是记下来一些意想不到的事情。这次搭建Bookstack实际查阅后台也同样发现审计显示都是CF的回源IP的问题。</p>



<span id="more-6465"></span>



<p class="wp-block-paragraph">这里先编辑Bookstack网站目录下的.env文件，<br>添加CF CDN回源IP的列表：</p>



<pre class="wp-block-code"><code>APP_PROXIES="173.245.48.0/20, 103.21.244.0/22, 103.22.200.0/22, 103.31.4.0/22, 141.101.64.0/18, 108.162.192.0/18, 190.93.240.0/20, 188.114.96.0/20, 197.234.240.0/22, 198.41.128.0/17, 162.158.0.0/15, 104.16.0.0/13, 104.24.0.0/14, 172.64.0.0/13, 131.0.72.0/22, 2400:cb00::/32, 2606:4700::/32, 2803:f800::/32, 2405:b500::/32, 2405:8100::/32, 2a06:98c0::/29, 2c0f:f248::/32"</code></pre>



<p class="wp-block-paragraph">随后，在Nginx目录中存储的网站域名的conf，<br>Webinoly找#WebinolyCustom区域，<br>寻找在location部分添加proxy_set_header的相关穿透属性：</p>



<pre class="wp-block-code"><code>location / {
	try_files $uri $uri/ /index.php?$query_string;
	proxy_set_header Host $host;
	proxy_set_header X-Real-IP $remote_addr;
	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	proxy_set_header X-Forwarded-Proto $scheme;
	}</code></pre>



<p class="wp-block-paragraph">然后想办法让Nginx配置文件的http部分引用标头相关的列表，这里可以作为全局模板存储在conf.d目录内。</p>



<pre class="wp-block-code"><code>set_real_ip_from 173.245.48.0/20;
set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from 162.158.0.0/15;
set_real_ip_from 104.16.0.0/13;
set_real_ip_from 104.24.0.0/14;
set_real_ip_from 172.64.0.0/13;
set_real_ip_from 131.0.72.0/22;
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2a06:98c0::/29;
set_real_ip_from 2c0f:f248::/32;
real_ip_header X-Forwarded-For;</code></pre>



<p class="wp-block-paragraph">最后重启Nginx，这个时候再去看审计后台就是穿透后的IP信息了，搞定。</p>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>剧透警告</summary>
<p class="has-small-font-size wp-block-paragraph">话说人工智能是有点厉害，人力合成是比不过机器神经的自动替换。上面这个标头列表还是直接从谷歌的AI拷出来的，虽然不难想象应该是用了什么神经模型自动从CF的IP列表抓取然后逐段加前后缀，这些IP几乎和CF官方完全一致……</p>



<p class="has-small-font-size wp-block-paragraph">虽然我大概还是不会主动使用AI，我也不懂Token啥的。<br>但是总觉得只是在用搜索引擎就已经不知不觉在用这些玩意的智能技术了。<br>计算机技术类大概是不可避免AI模型的分析了。</p>
</details>



<p class="wp-block-paragraph"></p>

<p><a href="https://v1sta.xyz/tech/bookstack-cloudflare-x-forwarded-real_ip/" rel="nofollow">来源</a></p>]]></content:encoded>
					
					<wfw:commentRss>https://v1sta.xyz/tech/bookstack-cloudflare-x-forwarded-real_ip/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<enclosure url="https://v1sta.xyz/wp-content/uploads/2026/03/V1sta-Orb-Output512-2.png" length="199214" type="image/png"/><media:content url="https://v1sta.xyz/wp-content/uploads/2026/03/V1sta-Orb-Output512-2.png" width="512" height="512" medium="image" type="image/png"/>	</item>
		<item>
		<title>日记 2026年7月6日</title>
		<link>https://v1sta.xyz/artworks/%e6%97%a5%e8%ae%b0-2026%e5%b9%b47%e6%9c%886%e6%97%a5/</link>
					<comments>https://v1sta.xyz/artworks/%e6%97%a5%e8%ae%b0-2026%e5%b9%b47%e6%9c%886%e6%97%a5/#respond</comments>
		
		<dc:creator><![CDATA[域主 V1STA]]></dc:creator>
		<pubDate>Sun, 05 Jul 2026 21:44:11 +0000</pubDate>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[日常]]></category>
		<category><![CDATA[艺术创作]]></category>
		<category><![CDATA[泞之翼]]></category>
		<category><![CDATA[逃出梦中的别墅]]></category>
		<guid isPermaLink="false">https://v1sta.xyz/?p=6448</guid>

					<description><![CDATA[戴了好久的索尼爱立信HPM64的橡胶环居然掉了！！！好可惜。不知道是不是骑车的时候弄掉的。怪我没有买海绵塞子。 &#8230; <a href="https://v1sta.xyz/artworks/%e6%97%a5%e8%ae%b0-2026%e5%b9%b47%e6%9c%886%e6%97%a5/" class="more-link">继续阅读<span class="screen-reader-text">日记 2026年7月6日</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">戴了好久的索尼爱立信HPM64的橡胶环居然掉了！！！好可惜。不知道是不是骑车的时候弄掉的。<br>怪我没有买海绵塞子。</p>



<p class="wp-block-paragraph">（次日更新：居然在家中玄关找到了橡胶环，可能是不经意间掉地上，虚惊一场！）</p>



<p class="wp-block-paragraph">不过顺带发现耳机本身也损耗的不行了，振膜都开了胶了，有点恶心的那种，挂脖的MMCX升级线也磨的差不多了。总之实在是太老了，塞班时代的SE耳机毕竟是差不多和那台ThinkPad一般岁数的老物件。还好我还有MH600备用，不过我得找找新的蓝牙耳放。当年给MH600配的30块钱的便宜耳放早就把领夹弄断了，只能当接收器用。</p>



<p class="wp-block-paragraph">感觉海贝W3那个USB功能挺有意思的，可以当DAC用。但还是太贵了。我或许直接入索尼法器比较合适，原汤化原食。当然最好还是有P3结城理那种款式的香水瓶比较好吧。</p>



<p class="wp-block-paragraph">贵啊。</p>



<p class="wp-block-paragraph">也在构思一些新的博客的想法，尽管这个时机可能不太合适。但还是要把握好机会。</p>



<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>



<figure class="wp-block-mamaduka-bookmark-card is-style-horizontal"><a class="bookmark-card" href="https://t34.help/"><div class="bookmark-card__content"><div class="bookmark-card__title">T34资料库</div><div class="bookmark-card__description"></div><div class="bookmark_card__meta"><img decoding="async" class="bookmark_card__meta-icon" src="https://t34.help/uploads/images/system/2026-07/B8gt34hl2fa.png"/><span class="bookmark_card__meta-publisher">t34.help</span></div></div></a></figure>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">今天试着搭建了 <a href="https://t34.help">T34.help</a> 资料库。<br>对，这就是域名……很奇特吧。<br>为了能更愉快地游玩和记载T34游戏系列，我决定用Bookstack搭建一个文档库。这里也要感谢通风报信的老友的支持与T34前辈的信赖，以及同样采用Bookstack的 <a href="https://docs.vrcd.org.cn/">VRCD 文档库</a> 撰写的各种创作规范，值得借鉴。</p>



<p class="wp-block-paragraph">Bookstack搭建的时候遇到了一些小挫折，原来写的文章忘记说明需要指定目录权限。这点官方的文档也说明了。<br>我这人真是粗心大意。<br>好在技术问题在前半夜就解决了，然后画了个图标：</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1.png" data-lbwps-width="900" data-lbwps-height="300" data-lbwps-srcsmall="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1-300x100.png"><img data-dominant-color="787f80" data-has-transparency="true" style="--dominant-color: #787f80;" fetchpriority="high" decoding="async" width="900" height="300" sizes="(max-width: 900px) 100vw, 900px" src="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1.png" alt="" class="wp-image-6450 has-transparency" srcset="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1.png 900w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1-300x100.png 300w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_1-768x256.png 768w" /></a></figure>
</div>


<p class="has-small-font-size wp-block-paragraph">（其实参考了Safari的图标、ThinkVantage RnR / Rescue and Recovery、Windows Media Player还有帮助中心的图标设计）</p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><a href="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL2FA.png" data-lbwps-width="256" data-lbwps-height="256" data-lbwps-srcsmall="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL2FA.png"><img data-dominant-color="828b8c" data-has-transparency="true" style="--dominant-color: #828b8c;" decoding="async" width="256" height="256" sizes="(max-width: 256px) 100vw, 256px" data-id="6449" src="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL2FA.png" alt="" class="wp-image-6449 has-transparency" srcset="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL2FA.png 256w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HL2FA-150x150.png 150w" /></a></figure>



<figure class="wp-block-image size-full"><a href="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL1FA.png" data-lbwps-width="256" data-lbwps-height="256" data-lbwps-srcsmall="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL1FA.png"><img data-dominant-color="6e7770" data-has-transparency="true" style="--dominant-color: #6e7770;" decoding="async" width="256" height="256" sizes="(max-width: 256px) 100vw, 256px" data-id="6451" src="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL1FA.png" alt="" class="wp-image-6451 has-transparency" srcset="https://v1sta.xyz/wp-content/uploads/2026/07/T34HL1FA.png 256w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HL1FA-150x150.png 150w" /></a></figure>
</figure>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD.png" data-lbwps-width="800" data-lbwps-height="450" data-lbwps-srcsmall="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD-300x169.png"><img data-dominant-color="525252" data-has-transparency="false" style="--dominant-color: #525252;" loading="lazy" decoding="async" width="800" height="450" sizes="auto, (max-width: 800px) 100vw, 800px" src="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD.png" alt="" class="wp-image-6452 not-transparent" srcset="https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD.png 800w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD-300x169.png 300w, https://v1sta.xyz/wp-content/uploads/2026/07/T34HELP_CARD-768x432.png 768w" /></a><figcaption class="wp-element-caption">捏他了ThinkPad的RnR界面</figcaption></figure>
</div>


<p class="wp-block-paragraph">花了两顿奶茶钱。啊，我还想买耳机啊。<br>所以后半夜熬夜赶的主要还是攻略和人物图鉴排版的内容。先把白色钥匙两条线整备完了，顺带加上信友的一些帮助。<br>当然.help域名属于促销价格，如果要续费的话，几乎是十倍的价格，恐怕要借助各位玩家的众筹款了。</p>



<p class="wp-block-paragraph">单独买域名也有一个坏处是，<br>Bookstack本身没有sitemap.xml文件的SEO功能。<br>所以要被搜索引擎直接收录的话，应该就很难了。</p>



<p class="wp-block-paragraph">如果挂在景の域本域名下的话，则应该是可以被爬虫检索到的。<br>但朋友还是一并要求最好用一个好记且独立的域名，以免被平台封杀。至少我这个空间甚至已经被腾讯系屏蔽访问了。。也好，这样也能过滤掉没有思维的访客。<br><em>你至少让他们用Kook跟Oopz也好啊。</em></p>



<p class="wp-block-paragraph">考虑到T34的游戏不大可能还有人特意用谷歌搜。<br>这个站也主要面向的是国内移网用户的玩家，所以SEO收不收录都无所谓，换个思维来说就算是百度也不一定会收。（所以，你有bing吗（笑））</p>



<p class="wp-block-paragraph">实际也发现help后缀不加https前缀的话，<br>聊天框不会当作网站看待。何况玩T34的游戏本来就对思维力要求高，这反而激励了玩家们自己复制到浏览器打开。交互方式反而歪打正着了。</p>



<p class="wp-block-paragraph">没有SEO也不算是什么坏事，<br>本身景の域的收录速度已经培养的很快了，有什么想要发布的还是在本域比较合适，想要找到资料并不是特别困难的事情。玩家也能有一个相对较好的体验。也避免了AI搜索导致的各种资源消耗。</p>



<p class="wp-block-paragraph">最终来说，T34.help 这个站的宣传途径依然是最古早的“口口相传”，这就足够了。本质上是一个类似东方系列的百科全书那种的纯公益功能站，用闲暇空余时间承载的小项目，也没有必要弄什么太大的宣发啊，能跑就行。</p>



<p class="wp-block-paragraph">不过说起来，Bookstack那个编辑器还是蛮难用的，也没有真正的同步模板。我主要看重的是Bookstack的编译离线查阅HTML保存能力。</p>



<p class="wp-block-paragraph">但是，在那里发布太多图像也有些不妥，<br>如果要节省空间以及控制访问量的话，可能还是WordPress合适一些。乃至是Hugo这样的静态博客。事实上我到现在还不熟悉MkDocs的使用方式。</p>



<p class="wp-block-paragraph">其实搭建这个站也有我自己的一点私心吧，<br>也是为了当作以后工作的履历的作品集。<br>以此证明我的的确确做过些什么。<br>当然，T34的别墅可是我童年时期的心上水，我本身是很热爱这个游戏系列的。以至于我似乎有点宠别墅了。。。（毕竟泞之翼世界观设定太大了，即使看攻略也不一定吃得消，我得慢慢来）</p>



<p class="wp-block-paragraph">但如果像那些其他的同人圈子那么纷争战乱的话，<br>被人当成说是土皇帝、又是圈钱又是你死我活的氛围，恐怕还是很难受的。希望T34系的玩家不会那么极端化吧，至少我觉得别墅的玩家很理性。</p>



<p class="wp-block-paragraph">我可能还想去做一下Stanley系列跟胡侦探系列的记载。<br>但果然我的精力不太够。我还想画些逆转跟幽灵诡计的同人创作……</p>

<p><a href="https://v1sta.xyz/artworks/%e6%97%a5%e8%ae%b0-2026%e5%b9%b47%e6%9c%886%e6%97%a5/" rel="nofollow">来源</a></p>]]></content:encoded>
					
					<wfw:commentRss>https://v1sta.xyz/artworks/%e6%97%a5%e8%ae%b0-2026%e5%b9%b47%e6%9c%886%e6%97%a5/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<enclosure url="https://t34.help/uploads/images/system/2026-07/B8gt34hl2fa.png" length="" type="image/png"/><media:content url="https://t34.help/uploads/images/system/2026-07/B8gt34hl2fa.png" width="256" height="256" medium="image" type="image/png"/>	</item>
	</channel>
</rss>
