Skip to content

Instantly share code, notes, and snippets.

@flano-yuki
Last active August 29, 2015 14:27
Show Gist options
  • Save flano-yuki/6784f26510d1131cb155 to your computer and use it in GitHub Desktop.
Save flano-yuki/6784f26510d1131cb155 to your computer and use it in GitHub Desktop.
https://asnokaze.com chromeだとERR_SPDY_INADEQUATE_TRANSPORT_SECURITY
worker_processes 1;
events {
worker_connections 1024;
}
http {
#include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
client_max_body_size 20M;
error_log /usr/local/nginx/logs/error.log debug;
server {
listen 443 ssl http2 ;
ssl_prefer_server_ciphers on; #★offにすると繋がる
server_name localhost;
ssl_certificate /home/xxx/nginx-1.9.3/server.crt;
ssl_certificate_key /home/xxx/nginx-1.9.3/server.key;
location / {
root /usr/share/www;
}
}
}
@flano-yuki
Copy link
Author

yuki@xxx-xxx-xxxxxx:~$ ./configure --with-http_ssl_module  --with-http_v2_module  --with-debug  --with-openssl=/home/xxx/openssl-1.0.2d/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment