Versionsunterschiede von Test Server / Setting Up Virtual Hosts




← Vorherige Änderung
Nächste Änderung →




19 19 IncludeOptional /etc/apache2/vhosts.d/*.conf
20 20 %%
21 21
22  
23  
24   ----
25  
26  
27  
28  
29  
30  
31  
32  
  22 ===Create a custom domain in the hosts file of your system====
33 23
34 24 Once you have installed and checked the status of Apache, go to its Web-root directory and create a new directory as mentioned below.
35   %% cd /srv/www/htdocs/ %%
  25 %% cd /srv/www/%%
36 26
37 27 %% sudo mkdir myproject%%
38 28
39 29 Create a new file in the above mentioned directory by using the following command.
40 30
41   %% echo -e '<html>\n<html>\n\t<body>\n\t\t<h1>Welcome World!</h1>\n\t</body>\n</html>' > /srv/www/htdocs/myproject/index.html %%
  31 %% echo -e '<html>\n<html>\n\t<body>\n\t\t<h1>Welcome World!</h1>\n\t</body>\n</html>' > /srv/www/myproject/htdocs/index.html %%
42 32
43 33 Create a new virtualhost configuration file in the below mentioned directory and configure it as follows.
44 34
45 35 /etc/apache2/conf.d/vhost.conf
46 36
47 37 %% sudo su%%
48   %%echo -e 'DocumentRoot "/srv/www/htdocs/myproject"\nServerName "myproject"' > /etc/apache2/conf.d/vhost.conf %%
  38 %%echo -e 'DocumentRoot "/srv/www/myproject"\nServerName "myproject"' > /etc/apache2/conf.d/vhost.conf %%
49 39
50 40 Did it work?
51 41 %% cat /etc/apache2/conf.d/vhost.conf%%
54 44 You should see
55 45
56 46 %% DocumentRoot "/srv/www/htdocs/myproject"
57    ServerName "myproject"
  47  ServerName "myproject.example.com"
58 48  %%
59 49
60 50 ===Edit configuration file===