mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-10-01 00:55:42 -04:00
16 lines
311 B
Plaintext
16 lines
311 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
|
||
|
umask 077
|
||
|
|
||
|
mkdir -p /etc/nginx/session-ticket-keys
|
||
|
mount -t ramfs -o mode=700 ramfs /etc/nginx/session-ticket-keys
|
||
|
|
||
|
cd /etc/nginx/session-ticket-keys
|
||
|
|
||
|
openssl rand -out 1.key 80
|
||
|
openssl rand -out 2.key 80
|
||
|
openssl rand -out 3.key 80
|
||
|
openssl rand -out 4.key 80
|