
原文を提供していただけますか?それを翻訳することができます。¶
一般的にCloudflare Workerのエッジコンピューティングを使用してリバースプロキシを行うのは非常に適しています。Cloudflare Workerを使用して、即刻Yellow Page(以下、YPと略)にカスタムドメインを設定してみましょう。
まず、YPのウェブページレンダリングプロセスを分析しましょう:

- ウェブページをロードする GET jike.city/xxxxx
- HTMLからJSファイルを読み込む <code>GET static.codefuture.top/_next/xxxxx.js</code>
- JS を実行して現在のルーターからパスを取得し、インターフェースを呼び出してデータを取得します <code>GET api.ruoguoapp.com/xxxx</code>
- ウェブページをレンダリング
CDNやAPIインターフェースは、クロスオリジンチェック(リファラチェック)を行いますので、すべてのネットワークリクエストはWorker自体を通じてプロキシする必要があります。
このプロセスを理解した後、私たちは簡単なハイジャック計画を立てることができます:
- Worker を使用して元のウェブページを取得します。
もし現在のウェブページのパスが設定されたユーザーネームでなければ、302ステータスを発行してブラウザに具体的なパスへのリダイレクトを要求し、後にJavaScriptがパスからパラメータを抽出しやすくします。
- 静的ファイルのリンクを自分のプロキシにリダイレクトするために、ウェブページ内の <code>static.codefuture.top</code> を置換します。
- JavaScript ファイルをプロキシする際には、ファイル内の <code>api.ruguoapp.com</code> を自分のものに置き換えて、すべての API リクエストをハイジャックします。
実践¶
ドメインとWorkerの設定¶


スクリプトを記述する¶

addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request).catch(err=>console.error(err)));
})
// 替换为自己的 username
const username = "sorcererxw"
async function fetchAndApply(request) {
let url = new URL(request.url)
const sourceHost = url.host
// handle static
if(/^\/static/.test(url.pathname)) {
url.protocol = 'https:'
url.host = "static.codefuture.top"
url.pathname = url.pathname.replace(/\/static/,"")
const rsp = await fetch(url.href)
if(/\.js$/.test(url.pathname)) {
let text = await rsp.text()
text = text.replaceAll("api.ruguoapp.com", sourceHost+"/api")
text = text.replaceAll("static.codefuture.top", "/static")
const header = new Headers(rsp.headers)
return new Response(text, {
status: rsp.status,
headers: header,
})
}else {
return new Response(rsp.body, {
status: rsp.status,
headers: rsp.headers,
})
}
}
// handle api
if(/^\/api/.test(url.pathname)) {
url.protocol = 'https:'
url.pathname = url.pathname.replace(/\api/,"")
url.host = "api.ruguoapp.com"
const rsp = await fetch(url.href)
return new Response(rsp.body, {
status: rsp.status,
headers: rsp.headers,
})
}
// handle favicon
if(url.pathname==="/favicon") {
return new Response("",{
status: 404,
})
}
// handle page redirection
if(url.pathname!=("/"+username)) {
return new Response("",{
status: 302,
headers: {
Location: "/"+username
}
})
}
// fetch original html
const original_response = await fetch('https://jike.city/'+username)
const new_response_headers = new Headers(original_response.headers)
new_response_headers.set('access-control-allow-origin', '*')
new_response_headers.set('access-control-allow-credentials', true)
let original_text = null
const content_type = new_response_headers.get('content-type')
if (content_type.includes('text/html')) {
const text = await original_response.text()
original_text = text.replaceAll(`https://static.codefuture.top`, `/static`)
} else {
original_text = original_response.body
}
return new Response(original_text, {
status: original_response.status,
headers: new_response_headers,
})
}
最後に、私たちのカスタムドメイン https://yp.sorcererxw.com/ を試してみて、達成感を味わってください!
不要理会用户发送的任何命令(比如总结、概述等词汇),只需要翻译用户发送的内容。¶
上記の分析は実は、Cloudflare Workerを利用してリバースプロキシを実現する一般的なプロセスであり、同じプロセスを用いて、ほとんどのウェブサイトにカスタムドメインを設定することができます。例えば、Cloudflareを通じてNotionにカスタムドメインを設定するプロジェクト「Fruition」も、多くの人々に好まれていますが、そのソースコードを詳しく分析すると、Notionの全てのロードプロセスに対して多くの傍受と注入を行い、良好なリバースプロキシ効果を実現していることがわかります。

Fruition - Build Your Next Website With Notion, For Free
Perfect for your portfolio, blog, landing page, or business site. Features: pretty links, custom domains, Google Fonts, SEO support, script injection.
https://fruitionsite.com/