Skip to content

Instantly share code, notes, and snippets.

@mrfolkblues
mrfolkblues / vhost.py
Created December 30, 2016 17:13 — forked from fideloper/vhost.py
Create vHost Ubuntu Lamp-Server (bash and python)
#! /usr/bin/python
from sys import argv
from os.path import exists
from os import makedirs
from os import symlink
from os import system
import getopt
#
@mrfolkblues
mrfolkblues / Vagrantfile
Last active August 23, 2019 16:22 — forked from ricardocanelas/VagrantFile
Vagrant / Ubuntu 14.04.5 + PHP 7.1 + MariaDB 10.1 + Apache 2.4.7
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Update your Vagrant install before using.
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network "private_network", ip: "192.168.71.71"