- Validate Locally - Apple
- https://www.objc.io/issues/17-security/receipt-validation/
- https://www.synack.com/2016/05/04/are-you-from-the-mac-app-store/
- validate receipt 1 and 2
- https://github.com/objective-see/fromAppStore
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
server_name yourdomain | |
ssl_certificate /etc/ssl/localcerts/yourdomain.crt; | |
ssl_certificate_key /etc/ssl/localcerts/yourdomain.key; | |
ssl_ecdh_curve prime256v1; | |
ssl_session_cache builtin:1000 shared:SSL:10m; |
Author: Chris Lattner
Following script may be used for configuring complete and secure email server on fresh install of Debian 9. It will probably work on other distributions using apt-get. After minor changes you'll be able to use it on other Linux distros.
###################################################################### | |
# BSD Meetup Rennes - FreeBSD Jails Workshop | |
# | |
# TEA-WARE LICENSE: | |
# Mathieu Kerjouan <[email protected]> wrote this file. As long as | |
# you retain this notice you can do whatever you want with this | |
# stuff. If we meet some day, and you think this stuff is worth it, | |
# you can buy me a tea in return. Mathieu Kerjouan | |
# | |
###################################################################### |
using UnityEngine; | |
using System.Net; | |
using System.Threading; | |
public class TestConnectionLimit : MonoBehaviour | |
{ | |
void Download(object arg) | |
{ | |
var sw = new System.Diagnostics.Stopwatch(); | |
sw.Start(); |
While I'm learning how to use Nginx, I was instructed to update the server_names_hash_bucket_size
(/etc/nginx/nginx.conf
) value from 32 to 64, but I don't understand why should I increase the value to 64.
References that have been read so far:
#!/bin/bash | |
export TARGET=amd64-marcel-freebsd9.2 | |
export PREFIX=/usr/cross-build | |
export TARGET_PREFIX=$PREFIX/$TARGET | |
export PATH=$PATH:$PREFIX/bin | |
mkdir -p $TARGET_PREFIX{,/lib,/include} | |
mkdir build-{binutils,gmp,mpfr,mpci,gcc} |