Skip to content

Instantly share code, notes, and snippets.

View gOOvER's full-sized avatar

Torsten Widmann gOOvER

View GitHub Profile
#!/bin/bash
############################
# intitial install section #
############################
#Switch to non-interactive mode (system will not ask for any confirmations)
export DEBIAN_FRONTEND "noninteractive"
#enable 'debug mode'. this will print every command as output, so you can follow the process ;)
@gOOvER
gOOvER / install-ispconfig3-ubuntu.sh
Last active June 9, 2017 07:16
Install ISPConfig3 Ubuntu 16.04 64Bits
#!/bin/bash
## Install ISPConfig3 on Ubuntu 16.04 64Bits
## Author: Nilton OS www.linuxpro.com.br
## https://www.howtoforge.com/tutorial/perfect-server-ubuntu-16.04-with-apache-php-myqsl-pureftpd-bind-postfix-doveot-and-ispconfig/
## Version 0.5
## Variables
## Install apache for https/2 Support from unofficial Source
APACHE=y

Keybase proof

I hereby claim:

  • I am gOOvER on github.
  • I am goover (https://keybase.io/goover) on keybase.
  • I have a public key whose fingerprint is 5BD7 7222 92A6 AC3F C16D C237 15FC 71D1 B0C2 7101

To claim this, I am signing this object:

@gOOvER
gOOvER / vhost.conf.master
Created June 22, 2015 16:21
ispconfig3 vhost Template
<Directory {tmpl_var name='web_basedir'}/{tmpl_var name='domain'}>
AllowOverride None
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
Require all denied
<tmpl_else>
Order Deny,Allow
Deny from all
</tmpl_if>
</Directory>