scnict.com.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name www.scnict.com;
  5. rewrite ^(.*) https://$server_name$1 permanent;
  6. }
  7. server {
  8. listen 443 ssl http2 default_server;
  9. listen [::]:443 ssl http2 default_server;
  10. server_name www.scnict.com;
  11. root /var/www/html;
  12. ssl_certificate "cert/9659689_www.scnict.com.pem";
  13. ssl_certificate_key "cert/9659689_www.scnict.com.key";
  14. ssl_session_cache shared:SSL:1m;
  15. ssl_session_timeout 10m;
  16. ssl_ciphers HIGH:!aNULL:!MD5;
  17. ssl_prefer_server_ciphers on;
  18. location ~ \.*gz {
  19. add_header Content-Encoding 'gzip';
  20. }
  21. location /api/ {
  22. proxy_pass http://127.0.0.1:7200/;
  23. }
  24. location /download {
  25. alias /root/download;
  26. autoindex on;
  27. }
  28. location /apitest/ {
  29. proxy_pass http://127.0.0.1:19000/;
  30. }
  31. error_page 404 /404.html;
  32. location = /40x.html {
  33. }
  34. error_page 500 502 503 504 /50x.html;
  35. location = /50x.html {
  36. }
  37. }