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 | |
function get_combinations($arrays) { | |
$result = array(array()); | |
foreach ($arrays as $property => $property_values) { | |
$tmp = array(); | |
foreach ($result as $result_item) { | |
foreach ($property_values as $property_value) { | |
$tmp[] = array_merge($result_item, array($property => $property_value)); | |
} |
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
#include conf.d/restrictions.conf; | |
# disable logging for favicon | |
location = /favicon.ico { | |
return 204; | |
log_not_found off; | |
access_log off; | |
} | |
# disable logging for robots.txt | |
location = /robots.txt { |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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/sh | |
# disable firewall | |
sudo ufw disable | |
# reset all firewall rules | |
sudo ufw reset --force | |
# set default rules: deny all incoming traffic, allow all outgoing traffic | |
sudo ufw default deny incoming |
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
The idea is to have nginx installed and node installed. I will extend this gist to include how to install those as well, but at the moment, the following assumes you have nginx 0.7.62 and node 0.2.3 installed on a Linux distro (I used Ubuntu). | |
In a nutshell, | |
1) nginx is used to serve static files (css, js, images, etc.) | |
2) node serves all the "dynamic" stuff. | |
So for example, www.foo.com request comes and your css, js, and images get served thru nginx while everything else (the request for say index.html or "/") gets served through node. | |
3) nginx listens on port 80. 4) node listens on port 8124 (for this example only. you can change this port for your node app). |
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
repositoryUrl = "https://github.com/xxx/yyy.git" | |
branch = "zzz" | |
pipeline { | |
agent any | |
stages { | |
stage('Clone sources') { | |
steps { | |
git url: repositoryUrl, credentialsId: "git-credentials", branch: branch |