Nginx设置www及https跳转
本站再一次搬家,这次搬家到阿里云的香港轻量服务器,使用的是宝塔的应用,使用起来还不错。从之前的Apache切换成Nginx,一些配置要重新修改一下。
本站主要的跳转有2个,一个是带www的域名跳转到非www的,另外一个是http跳转到https。也就是说:
- http://www.yqc.im –> https://yqc.im
- https://www.yqc.im –> https://yqc.im
- http://yqc.im –> https://yqc.im
设置方法
相关配置如下:
server {
listen 80;
server_name www.yqc.im yqc.im;
return 301 https://yqc.im$request_uri;
}
server {
listen 443;
server_name www.yqc.im;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#这里放SSL相关配置
#SSL-END
return 301 https://yqc.im$request_uri;
}
server
{
listen 443 ssl http2;
server_name yqc.im;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/yqc.im;
#SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
#这里放SSL相关配置
#SSL-END
#ERROR-PAGE-START 错误页配置,可以注释、删除或修改
#error_page 404 /404.html;
#error_page 502 /502.html;
#ERROR-PAGE-END
#PHP-INFO-START PHP引用配置,可以注释或修改
include enable-php-56.conf;
#PHP-INFO-END
#REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
include /www/server/panel/vhost/rewrite/yqc.im.conf;
#REWRITE-END
##remove html
location / {
if ( $request_uri ~ (.*)\/index\.html ) {
return 301 $1/;
}
if ($request_uri ~ ^/(.*)\.html) {
return 301 /$1/;
}
try_files $uri $uri.html $uri/ =404;
}
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log /dev/null;
access_log off;
}
location ~ .*\.(js|css)?$
{
expires 12h;
error_log /dev/null;
access_log off;
}
access_log /www/wwwlogs/yqc.im.log;
error_log /www/wwwlogs/yqc.im.error.log;
}
记录一下,下次不用到处找了。