Multiple Websites on the ...
Multiple Websites on the same VPS
- Casa
- Pannello di controllo
- Forum della Comunità
- General Discussion
- Product Suggestions
- Multiple Websites on the same VPS
- Forum della Comunità
- Multiple Websites on the same VPS
Argomento: Multiple Websites on the same VPS
Can I host different web servers from different domains from 1 VPS? None of them are high traffic
Rispondi con citazione |Segnalare
Yes, that is possible. With virual hosts in Linux.
Like bindings in windows iis.
Like bindings in windows iis.
Rispondi con citazione |Segnalare
kovachjk wrote:Can I host different web servers from different domains from 1 VPS? None of them are high traffic
config etc/hosts
example server ip 192.168.1.111
192.168.1.111 domain1 domain2 domain3 ecc..
config vhosts for apache server example:
nano /etc/apache2/sites-available/000-default.conf
VirtualHost *:80
servername domain1
....
next
VirtualHost *:80
servername domain2
ecc...
PS you can have multiple php version too use libapache2-mod-fcgid config for ich vhosts php7.2-fpm, php7.4-fpm, php8.0-fpm ecc.
Rispondi con citazione |Segnalare
| Autore | Argomento: Multiple Websites on the same VPS |
|---|---|
|
kovachjk Iscritto: 29/12/2015 |
mercoledì 27 luglio 2022 15:20
Can I host different web servers from different domains from 1 VPS? None of them are high traffic
|
|
globb90 Iscritto: 23/06/2024 |
sabato 29 giugno 2024 02:23
Yes, that is possible. With virual hosts in Linux.
Like bindings in windows iis. |
|
borisperc Iscritto: 11/03/2023 |
giovedì 4 luglio 2024 06:55
config etc/hosts example server ip 192.168.1.111 192.168.1.111 domain1 domain2 domain3 ecc.. config vhosts for apache server example: nano /etc/apache2/sites-available/000-default.conf VirtualHost *:80 servername domain1 .... next VirtualHost *:80 servername domain2 ecc... PS you can have multiple php version too use libapache2-mod-fcgid config for ich vhosts php7.2-fpm, php7.4-fpm, php8.0-fpm ecc. |
sabato 13 giugno 2026 08:28
