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

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

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

server {
  listen 80;
  listen 443 ssl http2;
  ssl_certificate /usr/local/nginx/conf/ssl/www.tag.gg.crt;
  ssl_certificate_key /usr/local/nginx/conf/ssl/www.tag.gg.key;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
  ssl_prefer_server_ciphers on;
  ssl_session_timeout 10m;
  ssl_session_cache builtin:1000 shared:SSL:10m;
  ssl_buffer_size 1400;
  add_header Strict-Transport-Security max-age=15768000;
  ssl_stapling on;
  ssl_stapling_verify on;
  server_name www.tag.gg tag.gg;
  access_log /data/wwwlogs/www.tag.gg.cc_nginx.log combined;
  index index.html index.htm index.php;
  root /data/wwwroot/www.tag.gg;
  if ($ssl_protocol = “”) { return 301 https://$host$request_uri; }
  if ($host != www.tag.gg) {  return 301 $scheme://www.tag.gg$request_uri;  }
 
  location / {
    try_files $uri @apache;
  }
  location @apache {
    proxy_pass http://127.0.0.1:88;
    include proxy.conf;
  }
  location ~ .*\.(php|php5|cgi|pl)?$ {
    proxy_pass http://127.0.0.1:88;
    include proxy.conf;
  }
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
    expires 30d;
    access_log off;
  }
  location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
  }
  location ~ /\.ht {
    deny all;
  }
}

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