ich kann tun was ich will, und auch aus meiner alten Config die ich hier mal gepostet hatte, bekomme ich beim SSL Test zustande!
Ein B ist mir ein bisschen zu wenig:
Hier mal meine Confs zur Ansicht:
Code: Select all
load_module modules/ngx_stream_module.so;
load_module modules/ngx_http_image_filter_module.so;
load_module modules/ngx_http_perl_module.so;
load_module modules/ngx_http_xslt_filter_module.so;
load_module modules/ngx_mail_module.so;
load_module modules/ngx_http_geoip_module.so;
# Define user that run nginx
			user www;
			worker_processes auto;
# Define error log
			error_log /var/log/nginx/error.log info;
			events {
			worker_connections 1024;
			multi_accept on;
			}
http {
			include       mime.types;
			default_type  application/octet-stream;
			log_format main '$remote_addr - $remote_user [$time_local] "$request"'
							'$status $body_bytes_sent "$http_referer"'
							'"$http_user_agent" "$http_x_forwarded_for"';
			tcp_nopush on;
			tcp_nodelay on;
			types_hash_max_size 2048;
			access_log /var/log/nginx/access.log;
				
# GENERAL
			ignore_invalid_headers on;
			sendfile on;
			server_name_in_redirect off;
			server_tokens off;
			charset utf-8;
			client_max_body_size 128M;
			client_body_buffer_size 128M;
#SSL 
			ssl_session_timeout 5m;
			ssl_session_cache shared:SSL:50m;
			add_header Strict-Transport-Security max-age=15768000;
			ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
			ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK';
			ssl_prefer_server_ciphers on;
# Timeouts
			client_body_timeout   65;
			client_header_timeout 65;
			keepalive_timeout     65 65;
			send_timeout          65;
# Compression
			gzip on;
			gzip_disable "MSIE [1-6]\.(?!.*SV1)";
			gzip_proxied expired no-cache no-store private auth;
			gzip_buffers 256 8k;
			gzip_comp_level 6;
			gzip_http_version 1.0;
			gzip_min_length 1024;
			gzip_vary on;
			gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript application/json;
#Cache
			fastcgi_cache_path /usr/local/etc/nginx/cache levels=1:2 keys_zone=WORDPRESS:100m inactive=60m;
			fastcgi_cache_key "$scheme$request_method$host$request_uri";
			fastcgi_cache_use_stale error timeout invalid_header http_500;
			fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
# Open file Cache
			open_file_cache          max=2000 inactive=20s;
			open_file_cache_valid    60s;
			open_file_cache_min_uses 5;
			open_file_cache_errors   off;
# FloodSchutz
			large_client_header_buffers 4 256k;
			limit_conn_zone $binary_remote_addr zone=conn_limit_per_ip:10m;
			limit_req_zone $binary_remote_addr zone=req_limit_per_ip:10m rate=50r/s;
			limit_conn conn_limit_per_ip 20;
			limit_req zone=req_limit_per_ip burst=20;
			
			
			include wordpress/*.conf;
}
Code: Select all
server {
                listen 89.163.242.6:80 default;
                listen [2001:4ba0:ffa5:00f8::1]:80 ipv6only=on default; 
                listen 89.163.242.6:443 ssl default;
                listen [2001:4ba0:ffa5:00f8::1]:443 ssl default;
                
		server_name phoenix-blog phoenixblog.de;
				
# Define web data
                root /usr/local/www/phoenix;
                index index.php index.html index.htm;
                ssl_certificate /usr/local/etc/nginx/ssl/www.phoenix-blog.de.crt;
                ssl_certificate_key /usr/local/etc/nginx/ssl/www.phoenix-blog.de.key;
		ssl_dhparam /usr/local/etc/nginx/ssl/dh_params.pem;
		add_header Strict-Transport-Security "max-age=16070400; includeSubdomains";
		ssl_session_timeout 5m;
		ssl_protocols TLSv1.1 TLSv1.2;
		ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK'; 
		ssl_prefer_server_ciphers on;
		add_header X-Frame-Options SAMEORIGIN;
		add_header X-Content-Type-Options nosniff;
		add_header X-XSS-Protection "1; mode=block";
		if ($request_method = POST) {
		set $skip_cache 1;
		}   
		if ($query_string != "") {
		set $skip_cache 1;
		}   
		if ($request_uri ~* "/wp-admin/|/xmlrpc.php|wp-.*.php|/feed/|index.php|sitemap(_index)?.xml") {
		set $skip_cache 1;
		}   
		if ($http_cookie ~* "comment_author|wordpress_[a-f0-9]+|wp-postpass|wordpress_no_cache|wordpress_logged_in") {
		set $skip_cache 1;
		}
location /      {
                try_files $uri $uri/ /index.php?$args;
                }   
                rewrite /wp-admin$ $scheme://$host$uri/ permanent;
				
location ~* \.^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
                add_header        Cache-Control public;
                add_header        Cache-Control must-revalidate;
                expires           7d;
                }
                error_page 500 502 503 504 /50x.html;
                location = /50x.html {
                root /usr/local/www/nginx-dist;
                }
                open_file_cache max=1000 inactive=20s;
                open_file_cache_valid 30s;
                open_file_cache_min_uses 5;
                open_file_cache_errors off;
# Configuration for PHP-FPM
location ~ \.php$ {
                try_files $uri =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass unix:/var/run/php-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $request_filename;
                include fastcgi_params;
		limit_req zone=req_limit_per_ip burst=20;
		fastcgi_cache_bypass $skip_cache;
		fastcgi_no_cache $skip_cache;
		fastcgi_cache WORDPRESS;
		fastcgi_cache_valid  60m;
		fastcgi_read_timeout 300;
                }
	}
Code: Select all
openssl genpkey -genparam -algorithm DH -pkeyopt dh_paramgen_prime_len:4096 -out /usr/etc/nginx/ssl/dh_params.pem
openssl genpkey -genparam -algorithm EC -pkeyopt ec_paramgen_curve:secp384r1 -out /usr/etc/nginx/ssl/ec_params.pem