For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| //Make sure you scroll down to get all data loaded | |
| var text = ''; | |
| $('.col-email').each(function(index,el) { | |
| if (index == 0) { | |
| text = 'Email, First Name, Last Name\n'; | |
| } | |
| else { | |
| text = text + $.trim($(el).find("a").text()) + ','; | |
| //First Name |
| resolver 8.8.8.8; | |
| location /video/ { | |
| if ($request_uri ~ "^/video/(.+?)/.+") { | |
| set $upstream_host $1.googlevideo.com; | |
| add_header Content-Disposition "attachment; filename=video.mp4;"; | |
| } | |
| rewrite /video/.+?/(.+)$ /$1 break; | |
| proxy_buffering off; | |
| proxy_pass https://$upstream_host; | |
| proxy_set_header Host $upstream_host; |
| git clean -xfd | |
| git submodule foreach --recursive git clean -xfd | |
| git reset --hard | |
| git submodule foreach --recursive git reset --hard | |
| git submodule update --init --recursive |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt