Skip to content

Instantly share code, notes, and snippets.

View ajax13's full-sized avatar

Abir Brahem ajax13

  • Paris
View GitHub Profile
@ajax13
ajax13 / get_combinations.php
Created June 5, 2018 15:31 — forked from cecilemuller/get_combinations.php
PHP: Get all combinations of multiple arrays (preserves keys)
<?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));
}
@ajax13
ajax13 / restrictions.conf
Created October 25, 2017 12:12 — forked from islander/restrictions.conf
nginx.conf
#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 {
@ajax13
ajax13 / secure-nginx.conf
Last active October 25, 2017 12:09 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@ajax13
ajax13 / ufw-rules-ubuntu.sh
Last active October 23, 2017 10:35
Set ufw firewall rules.
#!/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
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).
@ajax13
ajax13 / Jenkinsfile
Last active December 4, 2022 12:03 — forked from jskarpe/Jenkins-php-pipeline
Jenkins file for symfony pipeline project written in groovy
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