graphene-os-server-infrastr.../nginx-create-session-ticket-keys

10 lines
148 B
Plaintext
Raw Normal View History

#!/bin/bash
set -o errexit -o nounset -o pipefail
cd /etc/nginx/session-ticket-keys
for i in {1..4}; do
head -c 80 </dev/random >$i.key
done