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
{"keys":[{"kty":"RSA","e":"AQAB","kid":"13f8ff3d-beae-40e7-a5e6-a863465421d9","n":"u1Vg74REDTo6S2ZRm3Zi8w6aY0ZOHAjoIT-EvTDBd0pV1YtcB702v0DOLQfX6aKvwMKz5IpviWM_3kaUag8QsXOYTqa5eCaoMlK-8IsNAPK8gPg7kDuWf2iYxskZm1nwnrRSiuapa7xD9Jl7QSmfdkgHEqpd3IT6tpUtJqAA6xqgYPmXq_yN9pBYepugpaICOjgXg8vWZgrLot8iL7QKUKuFA66ZJ0uZ8ynSqOgxASHjqwaN9frE8C4ygbDm2mi8M1ZjW1FUhyRE_LEyNkDVzmBl7AEY2ORzcaBQLMmqbd4ER6T7EyxgxTFJa7Zg7THnekaGRzKmXx3GoAwdNEDcPw"} | |
]} |
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
{"keys":[{"e":"AQAB","kid":"Om2U6AkxZ6nRWCjFF_Ejlvpv2jpjEP50se-tL-WFR6g","kty":"RSA","n":"3AgpTOBVe44xLTJrNBCzE_7sIP3kiJuFoBHIH7lKd9LoLqvzrZkxxxfInmMejvLXk42-QWVbhHb6IB4aovuAr8GiqDmBboW95kBgcezb5CDoWYcQNwb8pypM5ys2rOl8lzA4s5BrWQm8IvZcwLij_g87IHgWkUXJheLjrEYWncATlDRKxB2pkBpt1lVRwy5hCEa5HiYustF9_HD1IFRfh5OY9_FfuqWMkK3pb0nUP3I0MLrF4EhPqAp9BF4eHCBvta9PhT6zywpVp-fKT6WH8KmUXMIe9i8eH0bw8mizYg_nxYQ1iEtkzZ41gRjMmIjfGI1YYpYRygI_MW_gAmjcVw"}]} |
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
# -- Rule engine initialization ---------------------------------------------- | |
# Enable ModSecurity, attaching it to every transaction. Use detection | |
# only to start with, because that minimises the chances of post-installation | |
# disruption. | |
# | |
SecRuleEngine DetectionOnly | |
# -- Request body handling --------------------------------------------------- |
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
require 'base64' | |
require 'time' | |
require 'digest/sha1' | |
require 'openssl' | |
require 'net/https' | |
require 'json' | |
class Chef | |
attr_accessor :http, :path |
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
package org.cloudbus.cloudsim.examples; | |
import java.util.List; | |
import org.cloudbus.cloudsim.DatacenterBroker; | |
import org.cloudbus.cloudsim.DatacenterCharacteristics; | |
import org.cloudbus.cloudsim.Log; | |
import org.cloudbus.cloudsim.Vm; | |
import org.cloudbus.cloudsim.core.CloudSim; | |
import org.cloudbus.cloudsim.core.CloudSimTags; |