Cant make my site available to the internet
Posted
by
user1683645
on Ask Ubuntu
See other posts from Ask Ubuntu
or by user1683645
Published on 2012-11-22T05:08:56Z
Indexed on
2012/11/22
5:12 UTC
Read the original article
Hit count: 175
apache
Hi I'm using ubuntu as server OS for my webhosting but I'm having problem redirecting my domainname to my server Here are my /etc/hosts file and /etc/apache2/sites-available/mysite file.
hosts file:
127.0.0.1 www.lowkey.se
The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters
sites-available/file:
ServerAdmin webmaster@localhost ServerName www.lowkey.se
DocumentRoot /var/www/doost/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/doost/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</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 ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
And a screenshot from my domain name provider:
the site has been enabled in ubuntu, I've restarted apache2 and the folder /var/www/doost/ is there. What am i doing wrong?
© Ask Ubuntu or respective owner