Hi all,

I followed;
The Perfect Server - OpenSUSE 12.2 x86_64 (Apache2, Dovecot, ISPConfig 3)
http://www.howtoforge.com/perfect-se...ot-ispconfig-3

to set up the server. It is now running.

- running on browser;
https://192.168.0.101:8080

start ISPConfig

However I prefer running commands to set up email accounts on Postfix and hosting multiple websites on Apache2. But I could not find;
/etc/apache2/sites-available/default ?

# ls /etc/apache2/sites-available/
Code:
apps.vhost  ispconfig.conf  ispconfig.vhost
Whether apps.vhost is default?

# cat /etc/apache2/sites-available/apps.vhost
Code:
######################################################
# This virtual host contains the configuration
# for the ISPConfig apps vhost
######################################################

 Listen 8081
# NameVirtualHost *:8081

<VirtualHost _default_:8081>
  ServerAdmin webmaster@localhost
  
  
  <IfModule mod_php5.c>
    DocumentRoot /srv/www/apps
    AddType application/x-httpd-php .php
    <Directory /srv/www/apps>
      # php_admin_value open_basedir "/srv/www/apps:/usr/share:/tmp"
      Options FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
    </Directory>
  </IfModule>
  
  <IfModule mod_fcgid.c>
    DocumentRoot /srv/www/apps
    SuexecUserGroup ispapps ispapps
    <Directory /srv/www/apps>
      Options Indexes FollowSymLinks MultiViews +ExecCGI
      AllowOverride AuthConfig Indexes Limit Options FileInfo
      AddHandler fcgid-script .php
      FCGIWrapper /srv/www/php-fcgi-scripts/apps/.php-fcgi-starter .php
      Order allow,deny
      Allow from all
    </Directory>
  </IfModule>
  
  ServerSignature Off

</VirtualHost>
Where is the default? TIA

B.R.
satimis