mirror of https://gitee.com/pnoker/dc3-web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
server {
|
|
listen 80;
|
|
|
|
rewrite ^/$ /dc3/demo permanent;
|
|
|
|
include /etc/nginx/conf.d/location;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
|
|
add_header X-Xss-Protection 1;
|
|
add_header X-Frame-Options DENY;
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
ssl_dhparam /etc/ssl/certs/dhparam.pem;
|
|
ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4";
|
|
|
|
ssl_certificate /etc/nginx/conf.crt/dc3.site/fullchain.pem;
|
|
ssl_certificate_key /etc/nginx/conf.crt/dc3.site/privkey.pem;
|
|
|
|
rewrite ^/$ /dc3/demo permanent;
|
|
|
|
include /etc/nginx/conf.d/location;
|
|
}
|
|
|