Last active
August 29, 2015 14:27
-
-
Save flano-yuki/6784f26510d1131cb155 to your computer and use it in GitHub Desktop.
https://asnokaze.com chromeだとERR_SPDY_INADEQUATE_TRANSPORT_SECURITY
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} | |
} |
Author
flano-yuki
commented
Aug 17, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment