Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
1) I am working virtual host in apache2
I made below steps:-
-added my ip as below.
-add ServerName...
-create index.html in dir /var/www/dn1/
-make symbolic link between related dir
-restart apache2
2)
Code:
/etc/apache2/sites-available# cat domain1
NameVirtualHost 203.x.x.x
<VirtualHost 203.x.x.x>
ServerAdmin webmaster@localhost
ServerName www.domain1.com
DocumentRoot /var/www/dn1/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/dn1/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
#RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
Code:
cd /var/www/dn1# ls
index.html
Code:
dns:/etc/apache2/sites-available# ls
default domain1
ln -s /etc/apache2/sites-available/domain1 /etc/apache2/sites-enabled/domain1.com
tail /var/log/apache2/error.log
[warn] NameVirtualHost 203.x.x.x. has no VirtualHosts
A Newbie's Getting Started Guide to Linux
Learn the basics of the Linux operating systems. Get to know what it is all about, and familiarize yourself with the practical side. Basically, if you're a complete Linux newbie and looking for a quick and easy guide to get you started this is it. subscribe
Open Source Security Myths Dispelled Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization subscribe
InformationWeek InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology. subscribe