nginx.vh.default.conf 461 B

1234567891011121314151617
  1. server {
  2. listen 80;
  3. #listen 443 default ssl;
  4. server_name localhost h5-walle.bgyfw.com;
  5. #ssl on;
  6. #ssl_certificate cert.d/214372092370619.pem;
  7. #ssl_certificate_key cert.d/214372092370619.key;
  8. #ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  9. #ssl_ciphers HIGH:!aNULL:!MD5;
  10. #keepalive_timeout 70;
  11. location / {
  12. root /usr/share/nginx/html;
  13. index index.html index.htm;
  14. }
  15. }