isp-tools

git clone http://git.code.weiherhei.de/isp-tools.git
Log | Files | Refs | README

ispconfig-example (707B)


      1 #!/bin/bash
      2 
      3 # Place this file here: /etc/default/ispconfig
      4 
      5 # Database
      6 MYSQL_DATABASE=isp
      7 MYSQL_USER=dbuser
      8 MYSQL_PASSWORD=secret
      9 MYSQL_ADMIN_USER=root
     10 MYSQL_ADMIN_PASSWORD=verysecret
     11 
     12 
     13 # DNS-configuration
     14 # Bind9-Directory
     15 DNS_ZONEDIR=/etc/bind/db.d
     16 DNS_ALL_ZONES_FILE=/etc/bind/db.d/named.conf.local
     17 DNS_SERVER_IPV4=10.1.1.1
     18 DNS_SERVER_IPV6=fd80:23::2
     19 DNS_MX_HOST1=mail.example.de
     20 DNS_MX_HOST2=mail02.example.de
     21 DNS_SERVER_PRIMARY=ns1.example.de
     22 DNS_SERVER_SECONDARY=nsx.yourisp.example.de
     23 
     24 
     25 # MTA-Konfiguration
     26 MTA_CONFIG_DIR=/etc/postfix/ldap/
     27 
     28 
     29 # HTTPD-Config
     30 HTTPD_VHOST_DIR=/etc/apache2/sites.d
     31 HTTPD_EXTRA_CONFIG_DIR=/etc/apache2/sites-extra
     32 HTTPD_MYSQL_PASSWD_DIR=/etc/apache2/sites-mysql-passwd
     33