在CloudFlare中添加新端口,如8081

Add new ports like 8081 in cloudflare(在CloudFlare中添加新端口,如8081)
本文介绍了在CloudFlare中添加新端口,如8081的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个Django项目在端口80808081上运行,域名为abc.com

现在我们将我们的网站添加到Cloudflare中,因此abc.com使用新的IP和端口8080工作正常

但是,在端口8081上,我们只能通过original_host_ip而不能通过domainname.com

访问它

abc.com:8080 WORKING
a.b.c.d:8081 WORKING

我是通过

测试的

Test-NetConnection a.b.c.d -port 8081

Test-NetConnection abc.com -port 8081

abc.com:8081 NOTWORKING ->Remote address cloudflare
a.b.c.d:8081 WORKING    ->Remote address a.b.c.d

所以我想可能是因为Cloudflare的防火墙,它不接受端口8081

所以我想知道如何向Cloudflare添加新端口,如端口8081。

推荐答案

如here所述,如果没有云耀斑频谱,这似乎是不可能的,而云耀斑频谱仅在付费计划中可用。这就解释了为什么8080可以工作,而8081不能。

如果可能,请考虑使用其他非标准端口之一:

HTTP: 8080 8880 2052年 2082年 2086年 2095年

HTTPS: 2053年 2083年 2087年 2096年 8443

这篇关于在CloudFlare中添加新端口,如8081的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)