Versionsunterschiede von Test Server / Setting Up Virtual Hosts
19 | 19 | IncludeOptional /etc/apache2/vhosts.d/*.conf |
---|---|---|
20 | 20 | %% |
21 | 21 | |
22 |
===Create a custom domain |
|
22 | ===Create a custom domain for the host files on your system==== | |
23 | 23 | ====Create folder to host your files== |
24 | 24 | Change to user root |
25 | 25 | %% sudo su%% |
… | … | … |
37 | 37 | |
38 | 38 | %% 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 %% |
39 | 39 | |
40 |
====Link DocumentRoot to ServerName |
|
40 | ====Link DocumentRoot to ServerName respectively virtual host== | |
41 | 41 | |
42 | 42 | Create a new virtualhost configuration file in the below mentioned directory and configure it as follows. |
43 | 43 | |
… | … | … |
59 | 59 | ===Edit configuration file=== |
60 | 60 | https://de.opensuse.org/Apache |
61 | 61 | |
62 |
%% sudo cp /etc/apache2/vhosts.d/vhost.template /etc/apache2/vhosts.d/myproject |
|
62 | %% sudo cp /etc/apache2/vhosts.d/vhost.template /etc/apache2/vhosts.d/myproject_vhost.conf %% | |
63 | 63 | |
64 | 64 | Example configuration |
65 | 65 | %% |
66 |
<VirtualHost |
|
66 | <VirtualHost 127.0.0.3:80> | |
67 | 67 | ServerName myproject |
68 | 68 | ServerAdmin webmaster@localhost |
69 |
DocumentRoot /srv/www/ |
|
70 |
<Directory /srv/www/ |
|
69 | DocumentRoot /srv/www/myproject/htdocs | |
70 | <Directory /srv/www/myproject/htdocs> | |
71 | 71 | Options Indexes FollowSymLinks MultiViews |
72 | 72 | AllowOverride None |
73 | 73 | Require all granted |