Skip to content

Instantly share code, notes, and snippets.

View soee's full-sized avatar
🏠
Working from home

Marcin Sągol soee

🏠
Working from home
View GitHub Profile
@soee
soee / .gitignore
Created April 6, 2016 15:14 — forked from aertmann/.gitignore
Neos installation versioning (.gitignore)
/Build/**
!/Build/Surf**
/Configuration/**/Settings.yaml.example
/Configuration/Settings.yaml
/Configuration/**/*.php
/Configuration/*.php
/Configuration/README
/Configuration/Testing
/Data/
@soee
soee / nginx-ispconfig3-ubuntu.sh
Last active April 4, 2016 20:17
Install Nginx ISPConfig3 Ubuntu 14.04 64Bits
#!/bin/bash
## Install ISPConfig3 on Ubuntu 14.04 64Bits
## Author: Nilton OS blog.linuxpro.com.br
## http://blog.linuxpro.com.br/posts/instalando-ispconfig3-no-ubuntu-1404.html
## http://www.howtoforge.com/the-perfect-server-ubuntu-14.04-nginx-bind-mysql-php-postfix-dovecot-and-ispconfig3-p2
apt update
apt install dialog
#!/bin/sh
sudo apt-get install apache2-prefork-dev libxml2 libxml2-dev apache2-dev
mkdir ~/modbuild/ && cd ~/modbuild/
wget http://apache.webthing.com/svn/apache/filters/mod_xml2enc.c
wget http://apache.webthing.com/svn/apache/filters/mod_xml2enc.h
sudo apxs2 -aic -I/usr/include/libxml2 ./mod_xml2enc.c
cd ~
sudo rm -rfd ~/modbuild/
sudo service apache2 restart