我可以配置一个子域指向我的服务器上的特定端口

我有一台旧电脑,我把它改装成了 Minecraft 服务器。我有2个 Minecraft 服务器同时运行,一个在端口25565(默认)和一个在端口25566。

我买了域名 something.example并指向我的服务器。现在,在游戏中输入 something.example进入第一台服务器,输入 something.example:25566进入另一台服务器。

有没有办法将 one.something.example设置为指向第一个服务器,而将 two.something.example设置为指向第二个服务器?我拥有(centos)服务器、 root 访问权限和其他所有权限。域是由无 ip 控制的,如果有区别的话。我知道 DNS 与端口号没有关系,但如果有一个程序,我可以安装使这个工作?

147101 次浏览

我..。.我不这么认为。您可以将子域(例如 blah.something.example)重定向到指向 something.example:25566,但是我不认为您可以实际上将子域设置为位于另一个类似的端口上。我可能错了,但它可能会更容易使用一个简单的 .htaccess或东西检查 %{HTTP_HOST}和重定向根据子域。

如果服务器上只有一个 IP,那么就没有机会这样做。DNS 是一个简单的数字名称(IP)解析器。如果服务器上有两个 IP,则可以将每个子域指向每个 IP 地址,并在每个 IP 上的默认端口上运行两个服务器。
one.example.com-> 127.0.0.1(服务器: 127.0.0.1:25565)
two.example.com-> 127.0.0.2(服务器: 127.0.0.2:25565)

如果你有访问 SRV 记录的权限,你可以使用它们来得到你想要的:)

脑电图

A 唱片公司

Name: mc1.domain.example
Value: <yourIP>


Name: mc2.domain.example
Value: <yourIP>

SRV 记录

Name: _minecraft._tcp.mc1.domain.example
Priority: 5
Weight: 5
Port: 25565
Value: mc1.domain.example


Name: _minecraft._tcp.mc2.domain.example
Priority: 5
Weight: 5
Port: 25566
Value: mc2.domain.example

那么在我的世界里你可以使用

mc1.domain.example将使用端口将您签名到服务器1 25565

还有

mc2.domain.example将使用端口将您签名到服务器2 25566

然后在你的路由器,你可以有它的点25565和25566的机器与两个服务器和瞧!

资料来源: 对于我来说,在同一台端口为50500和50501的机器上运行两台 Minecraft 服务器是可行的

只有1个 IP,你可以忘记 DNS,但你可以使用 MineProxy,因为客户端的握手包包含主机,然后他连接到和一个 MineProxy 将准备这个主机和代理的连接到一个服务器注册了该主机

如果你想在不同端口的单个服务器上托管多个网站,那么 MRVDOG 提到的方法是行不通的。因为浏览器不会解析 SRV 记录,并且总是按 :80端口。 例如,你的要求是:

site1.domain.example maps to domain.example:8080
site2.domain.example maps to domain.example:8081

因为通常您希望充分利用所购买的服务器空间。 然后你可以试试下面的方法:

第一步: 安装代理服务器。我将在这里使用 Nginx

apt-get install nginx

第二步: 编辑 /etc/nginx/nginx.conf文件以添加端口映射:

server {
listen 80;
server_name site1.domain.example;


location / {
proxy_pass http://localhost:8080;
}
}


server {
listen 80;
server_name site2.domain.example;


location / {
proxy_pass http://localhost:8081;
}
}

这就是奇迹。所以文件最终看起来会像下面这样:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;


events {
worker_connections 768;
# multi_accept on;
}


http {


##
# Basic Settings
##


sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;


# server_names_hash_bucket_size 64;
# server_name_in_redirect off;


include /etc/nginx/mime.types;
default_type application/octet-stream;


##
# SSL Settings
##


ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;


##
# Logging Settings
##


access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;


##
# Gzip Settings
##


gzip on;


# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;


##
# Virtual Host Configs
##
server {
listen 80;
server_name site1.domain.example;


location / {
proxy_pass http://localhost:8080;
}
}


server {
listen 80;
server_name site2.domain.example;


location / {
proxy_pass http://localhost:8081;
}
}


include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
#
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

第三步: 开始 Nginx:

/etc/init.d/nginx start.

无论何时更改配置,都需要重新启动 Nginx:

/etc/init.d/nginx restart

最后 : 不要忘记在你的 DNS 配置中添加 一张唱片。所有的子域应该指向域。像这样:

把你的静态 IP 代替 111.11.111.111

详情:

主持静态网站: 如果你有任何静态网站(比如棱角应用程序) ,你想在 Nginx 本身部署。将 index.html 与其他资源一起放在某个文件夹中,如 /srv/mySite,并在 nginx.conf 中添加以下服务器块:

server {
listen 80;
server_name staticSite.domain.example;
root /srv/mySite;
location / {
try_files $uri $uri/ /index.html;
}
}

如果你想使用2个子域名到其他端口,你可以使用 Minecraft 的代理服务器(意思是 BungeeCord,Waterfall,Travertine...) ,并将子域名绑定到 config.yml 服务器上。 要做到这一点,你必须在 BungeeCord 的配置中设置你的服务器:

servers:
pvp:
motd: 'A Minecraft Server PVP'
address: localhost:25566
restricted: false
skyblock:
motd: 'A Minecraft Server SkyBlock'
address: localhost:25567
restricted: false

记住!端口必须不同于默认的 Minecraft 的端口(它的意思是25565) ,因为我们将使用这个端口到我们的代理。sub1.domain.examplesub2.domain.example我们必须绑定到服务器,在那里您有这些服务器。现在,我们必须绑定子域在您的蹦极服务器:

listeners:
forced_hosts:
sub1.domain.example: pvp
sub2.domain.example: skyblock
domain.example: pvp // You can bind other domains to same servers.

请记住将 force _ default _ server 更改为 true,并将 host 更改为 0.0.0.0:25565 带有一些服务器的 BungeeCord 的 config.yml 示例: https://pastebin.com/tA9ktZ6f 现在你可以连接到 sub1.domain.example上的 PVP 服务器,然后连接到 sub2.domain.example上的 Skyblock。不要担心,BungeeCord 只需要0.5 GB 的内存就可以容纳500个玩家。