F5F Stay Refreshed Power Users Networks How do VPS services

How do VPS services

How do VPS services

Pages (2): 1 2 Next
M
Madlock_
Member
127
12-17-2016, 05:36 AM
#1
Imagine you have a toy box (VPS) that can be used as a computer for the internet. There’s a special rule: only one box can have one open door (port 80) so everyone can see what’s inside. You have just one public address, but you can only open one door at a time. That’s why you can’t have many websites using the same port at once.
M
Madlock_
12-17-2016, 05:36 AM #1

Imagine you have a toy box (VPS) that can be used as a computer for the internet. There’s a special rule: only one box can have one open door (port 80) so everyone can see what’s inside. You have just one public address, but you can only open one door at a time. That’s why you can’t have many websites using the same port at once.

M
moa203
Junior Member
20
12-17-2016, 06:24 AM
#2
You need a reverse proxy solution. Popular web servers such as nginx can be set up to handle this, sending requests internally to another server or port depending on the input address.
M
moa203
12-17-2016, 06:24 AM #2

You need a reverse proxy solution. Popular web servers such as nginx can be set up to handle this, sending requests internally to another server or port depending on the input address.

A
asmuund
Member
125
12-18-2016, 08:16 PM
#3
It’s possible through careful configuration and load balancing. Multiple services can run on a single port by distributing traffic across several VPSs or servers. Each VPS handles its own service, and a router or load balancer directs requests to the appropriate instance. This setup allows you to share a public IP while maintaining performance and reliability for each service.
A
asmuund
12-18-2016, 08:16 PM #3

It’s possible through careful configuration and load balancing. Multiple services can run on a single port by distributing traffic across several VPSs or servers. Each VPS handles its own service, and a router or load balancer directs requests to the appropriate instance. This setup allows you to share a public IP while maintaining performance and reliability for each service.

X
xCrusherYT
Member
187
12-20-2016, 03:00 PM
#4
The reverse proxy handles requests by routing them based on the domain provided. When a connection attempt comes in with a specific domain like mc1.yourdomain, it directs traffic to a designated host such as port X. Similarly, for mc2.yourdomain, it sends the request to port Y. Your servers must be set up to operate on these ports internally.
X
xCrusherYT
12-20-2016, 03:00 PM #4

The reverse proxy handles requests by routing them based on the domain provided. When a connection attempt comes in with a specific domain like mc1.yourdomain, it directs traffic to a designated host such as port X. Similarly, for mc2.yourdomain, it sends the request to port Y. Your servers must be set up to operate on these ports internally.

C
coolboy62008
Junior Member
19
01-03-2017, 02:49 PM
#5
The concept of Virtual Host involves hosting multiple websites on one server. Each site can have its own IP address or share the same IP with different names. This setup hides the fact that several sites operate together on a single machine. Apache initially offered IP-based virtual hosts, and later versions added support for name-based ones, which are also known as host-based or non-IP virtual hosts.
C
coolboy62008
01-03-2017, 02:49 PM #5

The concept of Virtual Host involves hosting multiple websites on one server. Each site can have its own IP address or share the same IP with different names. This setup hides the fact that several sites operate together on a single machine. Apache initially offered IP-based virtual hosts, and later versions added support for name-based ones, which are also known as host-based or non-IP virtual hosts.

B
Brudora
Senior Member
726
01-03-2017, 09:55 PM
#6
Here are some useful keywords and links you can explore:
B
Brudora
01-03-2017, 09:55 PM #6

Here are some useful keywords and links you can explore:

E
EmmaRosie629
Senior Member
459
01-03-2017, 10:34 PM
#7
I checked the information you mentioned.
Set up a reverse proxy setup.
E
EmmaRosie629
01-03-2017, 10:34 PM #7

I checked the information you mentioned.
Set up a reverse proxy setup.

J
Jaimefs1991
Junior Member
9
01-04-2017, 01:30 AM
#8
Additionally, some applications such as Minecraft utilize SRV DNS entries. These records provide the client with an IP address or hostname along with a specific port number. This enhances usability by presenting information in a more user-friendly format. Learn more about this feature.
J
Jaimefs1991
01-04-2017, 01:30 AM #8

Additionally, some applications such as Minecraft utilize SRV DNS entries. These records provide the client with an IP address or hostname along with a specific port number. This enhances usability by presenting information in a more user-friendly format. Learn more about this feature.

J
jvdbreemen
Member
191
01-04-2017, 07:13 AM
#9
I might configure two virtual machines, each with Postfix and Dovecot, for separate domains. Since web hosting usually provides an email address, I’d need to set that up separately. Because SMTP and IMAP aren’t accessible over HTTP, I wouldn’t be able to proxy them using Apache or Nginx.
J
jvdbreemen
01-04-2017, 07:13 AM #9

I might configure two virtual machines, each with Postfix and Dovecot, for separate domains. Since web hosting usually provides an email address, I’d need to set that up separately. Because SMTP and IMAP aren’t accessible over HTTP, I wouldn’t be able to proxy them using Apache or Nginx.

T
TheFallenRose
Senior Member
616
01-04-2017, 09:09 PM
#10
It doesn't matter if it's not http. This guide shows how to use nginx to forward SSH, FTP, SQL and more: https://www.howtoforge.com/reverse-proxy...ing-nginx/ Hosting your own mail server is going to be a challenge, especially because most self-managed origins risk getting blocked for spam reasons. I used to run my email 10 years ago, but now when I manage other services it's the one I pay for yearly—hosted by the same provider as my domain.
T
TheFallenRose
01-04-2017, 09:09 PM #10

It doesn't matter if it's not http. This guide shows how to use nginx to forward SSH, FTP, SQL and more: https://www.howtoforge.com/reverse-proxy...ing-nginx/ Hosting your own mail server is going to be a challenge, especially because most self-managed origins risk getting blocked for spam reasons. I used to run my email 10 years ago, but now when I manage other services it's the one I pay for yearly—hosted by the same provider as my domain.

Pages (2): 1 2 Next