Skip to content

Instantly share code, notes, and snippets.

@cloudz
cloudz / nginx-wordpress.conf
Created January 16, 2023 14:26 — forked from nfsarmento/nginx-wordpress.conf
Harden wordpress security nginx
############ WordPress ####################
# Disable logging for favicon and robots.txt
location = /favicon.ico {
try_files /favicon.ico @empty;
access_log off;
log_not_found off;
expires max;
}
package Oefening1;
public class Manager extends Werknemer {
private double bonus;
private static int aantalManagers = 0;
public Manager(String voornaam, String naam, String functie, double salaris, double bonus) {
super(voornaam, naam, functie, salaris);
setBonus(bonus);
aantalManagers++;
@cloudz
cloudz / npm-cloudlinux.md
Created March 9, 2020 20:10 — forked from mcnamee/npm-cloudlinux.md
Install Node / NPM into CloudLinux

How to install Node.js & NPM on CentOS with CloudLinux and CageFS

Add node.js yum repository

yum install -y gcc-c++ make
curl -sL https://rpm.nodesource.com/setup_13.x | sudo -E bash -

Install node.js and NPM

yum install nodejs