Skip to content

Instantly share code, notes, and snippets.

@kontoulis
kontoulis / addwebsite
Last active February 10, 2021 11:04
A small php script you can use to add quickly a new vhost in apache
#!/usr/bin/php
<?php
if (posix_getuid() !== 0){
die("Please run this as root/sudo\n");
}
$apacheTemplate = "<VirtualHost *:port>
ServerAdmin server_admin
ServerName server_name
ServerAlias server_alias
@kontoulis
kontoulis / plugin.freezone.php
Created October 8, 2019 19:53
Overrides freezone in trackamnia
<?php
/**
* ManiaLive - Freezone Plugin
*
* @copyright Copyright (c) 2009-2011 NADEO (http://www.nadeo.com)
* @version $Revision: 3705 $:
* @author $Author: philippe $:
* @date $Date: 2011-05-09 13:04:04 +0200 (lun., 09 mai 2011) $:
*/