Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. server {
  2. listen 443 ssl http2 default_server;
  3. listen [::]:443 ssl http2 default_server;
  4. server_name _;
  5. root /usr/share/nginx/html;
  6.  
  7. ssl_certificate "/etc/nginx/ssl_cert/575u.crt";
  8. ssl_certificate_key "/etc/nginx/ssl_cert/server.key";
  9. ssl_session_cache shared:SSL:1m;
  10. ssl_session_timeout 10m;
  11. ssl_ciphers HIGH:!aNULL:!MD5;
  12. ssl_prefer_server_ciphers on;
  13.  
  14. # Load configuration files for the default server block.
  15. include /etc/nginx/default.d/*.conf;
  16.  
  17. location / {
  18. }
  19.  
  20. error_page 404 /404.html;
  21. location = /40x.html {
  22. }
  23.  
  24. error_page 500 502 503 504 /50x.html;
  25. location = /50x.html {
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement