Skip to content

Instantly share code, notes, and snippets.

@davide-romanini
Created July 21, 2012 08:22
Show Gist options
  • Save davide-romanini/3155098 to your computer and use it in GitHub Desktop.
Save davide-romanini/3155098 to your computer and use it in GitHub Desktop.
nginx unique id
perl_set $uid '
use Digest::MD5 qw(md5_hex);
sub {
return md5_hex(`od -vAn -N4 -tu4 < /dev/urandom`);
}';
#pass to fcgi
location ... {
fastcgi_param UNIQUE_ID $uid
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment