美文网首页
front.conf

front.conf

作者: zxk175 | 来源:发表于2020-03-10 16:50 被阅读0次
server {
    listen  80;
    listen  443 ssl;
    server_name  back.zxk175.com;

    ssl_certificate      ../../../cert/back.crt;
    ssl_certificate_key  ../../../cert/back.key;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    location / {
        root  ../../web/back;
        index  index.html;
    }

    error_page  500 502 503 504  /50x.html;
    location = /50x.html {
        root  html;
    }
}

相关文章

网友评论

      本文标题:front.conf

      本文链接:https://www.haomeiwen.com/subject/qrcgdhtx.html