server { listen 80; #listen [::]:80; server_name settlement-china.yimian.xyz; rewrite ^(.*)$ https://$host$1 permanent; } server { # listen 80; # listen [::]:80; listen 443 ssl; server_name settlement-china.yimian.xyz; root /home/yimian/www/settlement; index index.php index.html; client_max_body_size 50m; client_body_buffer_size 10m; ssl_certificate /home/yimian/ssl/star.yimian.xyz.ssl/star.yimian.xyz.crt; #2 ssl_certificate_key /home/yimian/ssl/star.yimian.xyz.ssl/star.yimian.xyz.key; #3 ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; # error_page 404 = /404.php; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; include /home/ushio/conf/nginx/default.d/*.conf; location / { } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } }