标题:Workers如何实现类似Nginx location的功能?
作者:MoeWang
原帖:https://hostloc.com/thread-866338-1-1.html
摘要:本帖最后由 MoeWang 于 2021-7-10 19:11 编辑
如题,是这样的,我把原来vercel的b2对象存储反代移到workers来了(看中了带宽联盟),然后我就找了找论坛里的workers反代隐藏path,然后就卡在这里了。。原因是我在vercel里面设置过不同的路由,比如/avatar/的path是用来反代gravatar的,传入的path符合条件的话(比如https://workers/avatar/xxxxxx)就执行反代gravatar的代码;
如果传入的URL不包含avatar(比如https://workers/test.jpg或者https://workers/public/123.js)就继续反代对象存储。
让我写个nginx或者vercel的那种path路由我会,但是换用service workers就真的不会了,
主要是如何监听不同路径这块代码不是很熟悉。如果要想复杂些的话这种要用if吗?
然后可能真的没找对关键词,网上我就没搜着service workers 分path执行的相关教程,所以来问问各位大佬。能给我一篇讲如何监听不同目录的文档或者教程也行。。吐了。。。救救孩子吧
目前搜到的代码如下: //gravatar反代 addEventListener( "fetch",event => { let url=new URL(event.request.url); url.hostname="secure.gravatar.com"; url.pathname="/avatar/"; let request=new Request(url,event.request); event. respondWith( fetch(request) ) } ) //gravatar反代 结束 //B2 存储隐藏桶 开始 'use strict'; const b2Domain = 'cdn.xxxxx'; // configure this as per instructions above const b2Bucket = 'xxxxxxx; // configure this as per instructions above const b2UrlPath = `/file/${b2Bucket}/`; addEventListener('fetch', event => { return event.respondWith(fileReq(event)); }); // define the file extensions we wish to add basic access control headers to const corsFileTypes = ['png', 'jpg', 'gif', 'jpeg', 'webp']; // backblaze returns some additional headers that are useful for debugging, but unnecessary in production. We can remove these to save some size const removeHeaders = [ 'x-bz-content-sha1', 'x-bz-file-id', 'x-bz-file-name', 'x-bz-info-src_last_modified_millis', 'X-Bz-Upload-Timestamp', 'Expires' ]; const expiration = 31536000; // override browser cache for images - 1 year // define a function we can re-use to fix headers const fixHeaders = function(url, status, headers){ let newHdrs = new Headers(headers); // add basic cors headers for images if(corsFileTypes.includes(url.pathname.split('.').pop())){ newHdrs.set('Access-Control-Allow-Origin', '*'); } // override browser cache for files when 200 if(status === 200){ newHdrs.set('Cache-Control', "public, max-age=" + expiration); }else{ // only cache other things for 5 minutes newHdrs.set('Cache-Control', 'public, max-age=300'); } // set ETag for efficient caching where possible const ETag = newHdrs.get('x-bz-content-sha1') || newHdrs.get('x-bz-info-src_last_modified_millis') || newHdrs.get('x-bz-file-id'); if(ETag){ newHdrs.set('ETag', ETag); } // remove unnecessary headers removeHeaders.forEach(header => { newHdrs.delete(header); }); return newHdrs; }; async function fileReq(event){ const cache = caches.default; // Cloudflare edge caching const url = new URL(event.request.url); if(url.host === b2Domain && !url.pathname.startsWith(b2UrlPath)){ url.pathname = b2UrlPath + url.pathname; } let response = await cache.match(url); // try to find match for this request in the edge cache if(response){ // use cache found on Cloudflare edge. Set X-Worker-Cache header for helpful debug let newHdrs = fixHeaders(url, response.status, response.headers); newHdrs.set('X-Worker-Cache', "true"); return new Response(response.body, { status: response.status, statusText: response.statusText, headers: newHdrs }); } // no cache, fetch image, apply Cloudflare lossless compression response = await fetch(url, {cf: {polish: "lossless"}}); let newHdrs = fixHeaders(url, response.status, response.headers); if(response.status === 200){ r ...
作者:MoeWang
原帖:https://hostloc.com/thread-866338-1-1.html
摘要:本帖最后由 MoeWang 于 2021-7-10 19:11 编辑
如题,是这样的,我把原来vercel的b2对象存储反代移到workers来了(看中了带宽联盟),然后我就找了找论坛里的workers反代隐藏path,然后就卡在这里了。。原因是我在vercel里面设置过不同的路由,比如/avatar/的path是用来反代gravatar的,传入的path符合条件的话(比如https://workers/avatar/xxxxxx)就执行反代gravatar的代码;
如果传入的URL不包含avatar(比如https://workers/test.jpg或者https://workers/public/123.js)就继续反代对象存储。
让我写个nginx或者vercel的那种path路由我会,但是换用service workers就真的不会了,
主要是如何监听不同路径这块代码不是很熟悉。如果要想复杂些的话这种要用if吗?
然后可能真的没找对关键词,网上我就没搜着service workers 分path执行的相关教程,所以来问问各位大佬。能给我一篇讲如何监听不同目录的文档或者教程也行。。吐了。。。救救孩子吧
目前搜到的代码如下: //gravatar反代 addEventListener( "fetch",event => { let url=new URL(event.request.url); url.hostname="secure.gravatar.com"; url.pathname="/avatar/"; let request=new Request(url,event.request); event. respondWith( fetch(request) ) } ) //gravatar反代 结束 //B2 存储隐藏桶 开始 'use strict'; const b2Domain = 'cdn.xxxxx'; // configure this as per instructions above const b2Bucket = 'xxxxxxx; // configure this as per instructions above const b2UrlPath = `/file/${b2Bucket}/`; addEventListener('fetch', event => { return event.respondWith(fileReq(event)); }); // define the file extensions we wish to add basic access control headers to const corsFileTypes = ['png', 'jpg', 'gif', 'jpeg', 'webp']; // backblaze returns some additional headers that are useful for debugging, but unnecessary in production. We can remove these to save some size const removeHeaders = [ 'x-bz-content-sha1', 'x-bz-file-id', 'x-bz-file-name', 'x-bz-info-src_last_modified_millis', 'X-Bz-Upload-Timestamp', 'Expires' ]; const expiration = 31536000; // override browser cache for images - 1 year // define a function we can re-use to fix headers const fixHeaders = function(url, status, headers){ let newHdrs = new Headers(headers); // add basic cors headers for images if(corsFileTypes.includes(url.pathname.split('.').pop())){ newHdrs.set('Access-Control-Allow-Origin', '*'); } // override browser cache for files when 200 if(status === 200){ newHdrs.set('Cache-Control', "public, max-age=" + expiration); }else{ // only cache other things for 5 minutes newHdrs.set('Cache-Control', 'public, max-age=300'); } // set ETag for efficient caching where possible const ETag = newHdrs.get('x-bz-content-sha1') || newHdrs.get('x-bz-info-src_last_modified_millis') || newHdrs.get('x-bz-file-id'); if(ETag){ newHdrs.set('ETag', ETag); } // remove unnecessary headers removeHeaders.forEach(header => { newHdrs.delete(header); }); return newHdrs; }; async function fileReq(event){ const cache = caches.default; // Cloudflare edge caching const url = new URL(event.request.url); if(url.host === b2Domain && !url.pathname.startsWith(b2UrlPath)){ url.pathname = b2UrlPath + url.pathname; } let response = await cache.match(url); // try to find match for this request in the edge cache if(response){ // use cache found on Cloudflare edge. Set X-Worker-Cache header for helpful debug let newHdrs = fixHeaders(url, response.status, response.headers); newHdrs.set('X-Worker-Cache', "true"); return new Response(response.body, { status: response.status, statusText: response.statusText, headers: newHdrs }); } // no cache, fetch image, apply Cloudflare lossless compression response = await fetch(url, {cf: {polish: "lossless"}}); let newHdrs = fixHeaders(url, response.status, response.headers); if(response.status === 200){ r ...
标题:delete the account[悬赏贴]
作者:mit
原帖:https://hostloc.com/thread-866342-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866342-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account[悬赏贴]
作者:mit
原帖:https://hostloc.com/thread-866343-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866343-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account[悬赏贴]
作者:mit
原帖:https://hostloc.com/thread-866345-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866345-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account!!!
作者:mit
原帖:https://hostloc.com/thread-866346-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866346-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account!!!!!!!!!!!!!!!!
作者:mit
原帖:https://hostloc.com/thread-866347-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866347-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:大佬推荐个路由器
作者:风花雪悦
原帖:https://hostloc.com/thread-866350-1-1.html
摘要:需求:既能接入有线宽带,又能插sim卡,两种网络同时在线,客户端随时可以根据需要选择不同网络
作者:风花雪悦
原帖:https://hostloc.com/thread-866350-1-1.html
摘要:需求:既能接入有线宽带,又能插sim卡,两种网络同时在线,客户端随时可以根据需要选择不同网络
标题:delete the account!!!!!!!!!!!!
作者:mit
原帖:https://hostloc.com/thread-866349-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866349-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account!!!!!
作者:mit
原帖:https://hostloc.com/thread-866351-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866351-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account!!!
作者:mit
原帖:https://hostloc.com/thread-866352-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866352-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:delete the account!!!!!!!!!!!!
作者:mit
原帖:https://hostloc.com/thread-866353-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
作者:mit
原帖:https://hostloc.com/thread-866353-1-1.html
摘要:Bye!Bye!
Please admin help me to delete the account.
标题:悬赏退站就退站,发这么多一个劲污染,连锁一起带走吧
作者:Elias
原帖:https://hostloc.com/thread-866354-1-1.html
摘要:mit:https://hostloc.com/home.php?mod ... ditional=removevlog
邀请者
柳逸寒:https://hostloc.com/home.php?mod=space&uid=24548&do=index
作者:Elias
原帖:https://hostloc.com/thread-866354-1-1.html
摘要:mit:https://hostloc.com/home.php?mod ... ditional=removevlog
邀请者
柳逸寒:https://hostloc.com/home.php?mod=space&uid=24548&do=index
标题:出ikoula 100欧元 带新加坡小鸡
作者:mytvsuper
原帖:https://hostloc.com/thread-866357-1-1.html
摘要:出ikoula 100欧元 带新加坡小鸡 剩余80欧元
由于充值了12美元,所以,余额应该是90欧元。
明盘80出。
作者:mytvsuper
原帖:https://hostloc.com/thread-866357-1-1.html
摘要:出ikoula 100欧元 带新加坡小鸡 剩余80欧元
由于充值了12美元,所以,余额应该是90欧元。
明盘80出。
标题:请教aws全区该怎么提额,怎么变成32V
作者:cheese
原帖:https://hostloc.com/thread-866359-1-1.html
摘要:用40447开了个aws,该怎么操作提额到32V
作者:cheese
原帖:https://hostloc.com/thread-866359-1-1.html
摘要:用40447开了个aws,该怎么操作提额到32V
标题:跟timbergling交易一个3o
作者:royzheng
原帖:https://hostloc.com/thread-866364-1-1.html
摘要:跟timbergling交易一个3o,因为付款方式比较诡异,我不放心。请timbergling确认
作者:royzheng
原帖:https://hostloc.com/thread-866364-1-1.html
摘要:跟timbergling交易一个3o,因为付款方式比较诡异,我不放心。请timbergling确认
标题:请教一下今天上车的D2550,可以挂东芝的2TB盘吗?
作者:爱国者捣蛋
原帖:https://hostloc.com/thread-866366-1-1.html
摘要:https://item.jd.com/100017188750.html#crumb-wrap
这样的,能够带得动吗?谢谢
作者:爱国者捣蛋
原帖:https://hostloc.com/thread-866366-1-1.html
摘要:https://item.jd.com/100017188750.html#crumb-wrap
这样的,能够带得动吗?谢谢