no server response in https
art.wu
nginx-forum at nginx.us
Wed May 4 23:10:38 MSD 2011
There was no response from the server (no 408 received by client).
Thanks for your help.
config:
user nginx nginx;
worker_processes 1;
events {
worker_connections 256;
}
http {
include /usr/pkg/etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log debug;
sendfile on;
keepalive_timeout 65;
# HTTPS server
#
server {
listen 443;
server_name tf2000;
ssl on;
ssl_certificate /x509/server.crt;
ssl_certificate_key /x509/server.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
location / {
root /www/webdoc;
index index.html index.htm;
}
}
}
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,195329,195629#msg-195629
More information about the nginx
mailing list