西数超哥博客
运维经验教程分享

完整的Nginx配置文件,以及http及https顶级域名跳转

完整的Nginx配置文件,以及http及https顶级域名跳转到https://www.tag.gg

  1. server {
  2. listen 80;
  3. listen 443 ssl http2;
  4. ssl_certificate /usr/local/nginx/conf/ssl/www.tag.gg.crt;
  5. ssl_certificate_key /usr/local/nginx/conf/ssl/www.tag.gg.key;
  6. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  7. ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
  8. ssl_prefer_server_ciphers on;
  9. ssl_session_timeout 10m;
  10. ssl_session_cache builtin:1000 shared:SSL:10m;
  11. ssl_buffer_size 1400;
  12. add_header StrictTransportSecurity maxage=15768000;
  13. ssl_stapling on;
  14. ssl_stapling_verify on;
  15. server_name www.tag.gg tag.gg;
  16. access_log /data/wwwlogs/www.tag.gg.cc_nginx.log combined;
  17. index index.html index.htm index.php;
  18. root /data/wwwroot/www.tag.gg;
  19. if ($ssl_protocol = “”) { return 301 https://$host$request_uri; }
  20. if ($host != www.tag.gg) { return 301 $scheme://www.tag.gg$request_uri; }
  21.  
  22. location / {
  23. try_files $uri @apache;
  24. }
  25. location @apache {
  26. proxy_pass http://127.0.0.1:88;
  27. include proxy.conf;
  28. }
  29. location ~ .*\.(php|php5|cgi|pl)?$ {
  30. proxy_pass http://127.0.0.1:88;
  31. include proxy.conf;
  32. }
  33. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
  34. expires 30d;
  35. access_log off;
  36. }
  37. location ~ .*\.(js|css)?$ {
  38. expires 7d;
  39. access_log off;
  40. }
  41. location ~ /\.ht {
  42. deny all;
  43. }
  44. }

					
赞(0)
声明:本站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,若涉及侵权请及时告知,将会在第一时间删除。本站原创内容未经允许不得转载:西数超哥博客 » 完整的Nginx配置文件,以及http及https顶级域名跳转