Задача: Работа двух доменов на одном апаче
1 2 |
sudo mkdir -p /var/www/test1.ru/public_html sudo mkdir -p /var/www/test2.ru/public_html |
1 2 3 4 5 6 7 8 9 10 |
nano /var/www/test1.ru/public_html/index.html <html> <head> <title>test1.ru</title> </head> <body> test1.ru </body> </html> |
1 2 3 4 5 6 7 8 9 10 |
nano /var/www/test2.ru/public_html/index.html <html> <head> <title>test2.ru</title> </head> <body> test2.ru </body> </html> |
1 2 3 4 5 6 |
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/test1.ru.conf sudo nano /etc/apache2/sites-available/test1.ru.conf ServerName test1.ru ServerAdmin webmaster@localhost DocumentRoot /var/www/test1.ru/public_html |
1 2 3 4 5 6 |
sudo cp /etc/apache2/sites-available/test1.ru.conf /etc/apache2/sites-available/test2.ru.conf sudo nano /etc/apache2/sites-available/test2.ru.conf ServerName test2.ru ServerAdmin webmaster@localhost DocumentRoot /var/www/test2.ru/public_html |
1 2 3 |
sudo a2ensite test1.ru.conf sudo a2ensite test2.ru.conf sudo service apache2 restart |