Hostloc 新帖图文推送
1.81K subscribers
59.5K photos
392K links
本频道基本功能:爬取国内外有名的主机论坛Hostloc新帖,为订阅者提供一手图文资讯!

Hostloc: https://www.hostloc.com

侵删,联系 @CodyD
Download Telegram
标题甲骨文arm424小鸡,如果增加个1T数据盘,一个月要多少钱?
作者SuperMaster
原帖https://hostloc.com/thread-881579-1-1.html

摘要:甲骨文的收费模式一直糊里糊涂的,MD,我准备把kimsufi扔了,头大。
标题为什么多多的存储卡比其他商场便宜那么多
作者三季稻
原帖https://hostloc.com/thread-881580-1-1.html

摘要:sandisk 64G

狗东47.9 再搭帐运费券
某宝 49 应该是包邮
多多 40 包邮,看评论应该是正品
标题不懂就问,淘宝上面的软件授权码怎么这么便宜?
作者Jasmy
原帖https://hostloc.com/thread-881581-1-1.html

摘要:今天又花了 8 毛钱买了一个正版截图软件的授权码(官网上面要100块左右)。。。

    大家别以为我买的盗版软件啊,我只是买一个软件注册码(非注册机)。

    然后从官网上下载了软件,输入注册码,然后就注册成功了。。。。

    之前我还没过 Office 2019 ,好像花了十几块钱,真的是正版啊。每次重装 Office,从微软官网下载即可。

    实在搞不懂这是怎么回事?类似好像还有杀毒软件(几块钱一个注册码),自己没有试过。

    这究竟是什么回事?怎么感觉像割韭菜。。
标题server2022出来了,请问下大佬
作者codeofpromo
原帖https://hostloc.com/thread-881583-1-1.html

摘要:azure  教育中心那里  有密钥上架了吗?
账号的软件中心登不进去了。
标题mjj们都用哪家机器做主力机
作者dom1024
原帖https://hostloc.com/thread-881584-1-1.html

摘要:mjj们都用哪家机器做主力机?配置啥样的?
最近折腾了一些vps,留下来的有搬瓦工绝版49.9的日本软银线路一个月500G的流量有点少、乌龟壳家的免费机器就怕突然失联、justhost家最低配不限流量性能有些差。不确定要不要把justhost的配置升起来。给点意见呀
标题我的netcup也免税啦
作者散打哥
原帖https://hostloc.com/thread-881585-1-1.html

摘要:拍了下别人的营业执照,找淘宝翻译了下。然后现在没税了。全称没给我打电话,和客服也有关系。我是运气比较好
标题kimsufi想发工单换硬盘的话,要给出什么证据和理由吗?
作者SuperMaster
原帖https://hostloc.com/thread-881586-1-1.html

摘要:如果需要证据证明硬盘不行的话,我这个证据就是打包不了文件夹,删不了文件夹,要怎么提交这种证据给客服呢??

还是说不需要证据,直接写我想换块新硬盘就行了?
标题我用cf反代了loc,可是只有首页怎么办?
作者三季稻
原帖https://hostloc.com/thread-881587-1-1.html

摘要https://billowing-block-5b0e.zzllxa.workers.dev
// 替换成你想镜像的站点 const upstream = 'hostloc.com' // 如果那个站点有专门的移动适配站点,否则保持和上面一致 const upstream_mobile = 'hostloc.com' // 你希望禁止哪些国家访问 const blocked_region = ['CN'] // 禁止自访问 const blocked_ip_address = ['0.0.0.0', '127.0.0.1'] // 替换成你想镜像的站点 const replace_dict = {     '$upstream': '$custom_domain',     '//hostloc.com': '' } //以下内容都不用动 addEventListener('fetch', event => {     event.respondWith(fetchAndApply(event.request)); }) async function fetchAndApply(request) {     const region = request.headers.get('cf-ipcountry').toUpperCase();     const ip_address = request.headers.get('cf-connecting-ip');     const user_agent = request.headers.get('user-agent');     let response = null;     let url = new URL(request.url);     let url_host = url.host;     if (url.protocol == 'http:') {         url.protocol = 'https:'         response = Response.redirect(url.href);         return response;     }     if (await device_status(user_agent)) {         upstream_domain = upstream     } else {         upstream_domain = upstream_mobile     }     url.host = upstream_domain;     if (blocked_region.includes(region)) {         response = new Response('Access denied: WorkersProxy is not available in your region yet.', {             status: 403         });     } else if(blocked_ip_address.includes(ip_address)){         response = new Response('Access denied: Your IP address is blocked by WorkersProxy.', {             status: 403         });     } else{         let method = request.method;         let request_headers = request.headers;         let new_request_headers = new Headers(request_headers);         new_request_headers.set('Host', upstream_domain);         new_request_headers.set('Referer', url.href);         let original_response = await fetch(url.href, {             method: method,             headers: new_request_headers         })         let original_response_clone = original_response.clone();         let original_text = null;         let response_headers = original_response.headers;         let new_response_headers = new Headers(response_headers);         let status = original_response.status;         new_response_headers.set('access-control-allow-origin', '*');         new_response_headers.set('access-control-allow-credentials', true);         new_response_headers.delete('content-security-policy');         new_response_headers.delete('content-security-policy-report-only');         new_response_headers.delete('clear-site-data');         const content_type = new_response_headers.get('content-type');         if (content_type.includes('text/html') && content_type.includes('UTF-8')) {             original_text = await replace_response_text(original_response_clone, upstream_domain, url_host);         } else {             original_text = original_response_clone.body         }         response = new Response(original_text, {             status,             headers: new_response_headers         })     }     return response; } async function replace_response_text(response, upstream_domain, host_name) {     let text = await response.text()     var i, j;     for (i in replace_dict) {         j = replace_dict[i]         if (i == '$upstream') {             i = upstream_domain         } else if (i == '$custom_domain') {             i = host_name         }         if (j == '$upstream') {             j = upstream_domain         } else if (j == '$custom_domain') {             j = host_name         }         let re = new RegExp(i, 'g')         text = text.replace(re, j);     }     return text; } async function device_status (user_agent_info) {     var agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];     var flag = true;     for (var v = 0; v 0) {             flag = false;             break;         }     }     return flag; }复制代码
标题憋了很久了,一直在自己努力,无果,还是来伸手了
作者g6162227
原帖https://hostloc.com/thread-881588-1-1.html

摘要:请问论坛里的签到在哪?我想快速成元老。。。
标题大佬们 买个小鸡 建立tor节点 通过小鸡 做个多重代理好不好
作者youxiajieke
原帖https://hostloc.com/thread-881590-1-1.html

摘要:大佬们 买个小鸡 建立tor节点 通过小鸡 做个多重代理好不好

代理不是很懂 要是自己多个小鸡 都加入tor节点 通过这几个tor节点转过来 转过去 上网会不会安全很多呀
标题你们的华为香港还好吗?
作者hostlocmjj
原帖https://hostloc.com/thread-881591-1-1.html

摘要:前排吃瓜
标题问个问题,一个小博客不能盈利,能坚持几年
作者爱发卡
原帖https://hostloc.com/thread-881592-1-1.html

摘要:问个问题,一个小博客不能盈利,能坚持几年
标题母鸡我装Proxmox-VE开几台小鸡。我可以母鸡装宝塔做站吗?
作者BigSite
原帖https://hostloc.com/thread-881593-1-1.html

摘要:开的小鸡都有独立IP都是win,自用的小鸡。

我可以在母鸡上装宝塔做网站吗?我网上看到有人说母鸡装了宝塔小鸡会不能联网?

有没有大佬懂的?
标题溢价100慢收一个老伯力,联通不绕路的
作者yyxwan
原帖https://hostloc.com/thread-881594-1-1.html

摘要:余额另算
标题阿汗酋 和 阿联酋 机房,据说都可抗投诉,哪位MJJ有货?
作者adminn
原帖https://hostloc.com/thread-881597-1-1.html

摘要:谁有,可能订购的人多~~
标题雄霸得新冠去世了
作者jiaoyuren678
原帖https://hostloc.com/thread-881595-1-1.html

摘要:RT
标题有兄弟有fang牌渠道吗?想干这个
作者xiaozhenghi
原帖https://hostloc.com/thread-881598-1-1.html

摘要:想干这个,缺少一件代发的。
标题甲骨文paypal验证失败,钱怎么拿回来l
作者byhmsrsh4
原帖https://hostloc.com/thread-881599-1-1.html

摘要:前几天跟风上车,试了大概七八次,银行卡有几十块不可用,怎么样才能拿回来?
标题江苏这边联通宽带怎么样
作者红白菜
原帖https://hostloc.com/thread-881600-1-1.html

摘要:打游戏还行吗 刚去营业厅看了下 才69一个月 500m、30g、600分钟
标题所以说FB是个什么沙雕东西啊,动不动账号就没了
作者PA-fan
原帖https://hostloc.com/thread-881601-1-1.html

摘要:用HK IP,HK电话,HK地址注册的,存活了一个月,中途我还上去关注了一些频道之类的东西。说封就封了。
标题腾讯云出bug了 程序员这不祭天??
作者net777
原帖https://hostloc.com/thread-881602-1-1.html

摘要:距离下次领取还有0天 是什么鬼???
没听说有个下次领取还有0天的