1
good afternoon...
I’m trying to set up 2 domains on 1 server: _Debian Linux _Apache2
I created the following file: pclinx.conf , then applied a2ensite , enabled and restarted apache2.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName www.pclinx.com.br
ServerAlias *.pclinx.com.br
DocumentRoot /var/www/html/pclinx
<Directory />
Options FollowSymLinks Indexes
AllowOverride AuthConfig
</Directory>
<Directory /var/www/html/pclinx>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
In /var/www/html/pclinx you have an index.html file .... but I can’t see the index anymore.
Website: www.pclinx.com.br
Can you help me please?