Versionsunterschiede von Test Server / Setting Up Virtual Hosts




← Vorherige Änderung
Nächste Änderung →




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