This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install dependencies | |
sudo apt-get install -y apache2-mpm-worker | |
sudo apt-get install -y libapache2-mod-fastcgi php5-fpm | |
# Disable prefork & Enable fcgi | |
sudo a2dismod php5 mpm_prefork | |
sudo a2enmod actions fastcgi alias mpm_worker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# /etc/init.d/gitautodeploy | |
# | |
# Service manager for GitAutoDeploy | |
# | |
# chkconfig: 345 70 30 | |
# description: Git Auto Deploy is a simple HTTP server for accepting push notifications from GitLab | |
# processname: gitautodeploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
useradd [username] | |
passwd [username] | |
usermod -g www-data -G [username] -d [home-directory] -s /usr/sbin/nologin [username] | |
Add this to bottom of /etc/ssh/sshd_config | |
Match User [username] | |
ChrootDirectory [home-directory] | |
PasswordAuthentication yes | |
X11Forwarding no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(FLOOR( 100 + RAND( ) * 1000 )) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example-domain.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./configure --prefix=/usr/local/src/php-5.4.23 --with-config-file-path=/usr/local/src/php-5.4.23/lib/php.ini --enable-cgi --enable-soap --with-pdo-mysql --with-curl --with-mysql --with-openssl --enable-force-cgi-redirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/local/psa/bin/php_handler --add -id "5.4.23" -displayname "5.4.23" -path /usr/local/src/php-5.4.23/bin/php -phpini /usr/local/src/php-5.4.23/lib/php.ini -type "fastcgi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class WC_Gateway_EFAREM extends WC_Payment_Gateway | |
{ | |
public function __construct() | |
{ | |
$this->id = 'efarem'; | |
$this->icon = plugin_dir_url(__FILE__) . '/assets/images/efarem.png'; | |
$this->has_fields = true; | |
$this->method_title = '{Title of Gateway}'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Are we on a blog page? | |
* | |
* @return bool | |
**/ | |
function is_blog() | |
{ | |
return (is_post_type_archive('post') || is_author() || is_category() || is_home() || is_singular('post') || is_tag()) ? true : false ; |
NewerOlder